Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(6)

Unified Diff: third_party/protobuf/csharp/src/Google.Protobuf/Compatibility/TypeExtensions.cs

Issue 2600753002: Reverts third_party/protobuf: Update to HEAD (f52e188fe4) (Closed)
Patch Set: Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/protobuf/csharp/src/Google.Protobuf/Compatibility/TypeExtensions.cs
diff --git a/third_party/protobuf/csharp/src/Google.Protobuf/Compatibility/TypeExtensions.cs b/third_party/protobuf/csharp/src/Google.Protobuf/Compatibility/TypeExtensions.cs
index 2d93183b0681b3177700228e48044bab800d8cc3..762a29eb0a3018d8f5d8eb37f83a50326c34d3bf 100644
--- a/third_party/protobuf/csharp/src/Google.Protobuf/Compatibility/TypeExtensions.cs
+++ b/third_party/protobuf/csharp/src/Google.Protobuf/Compatibility/TypeExtensions.cs
@@ -33,7 +33,6 @@
using System;
using System.Reflection;
-#if !DOTNET35
namespace Google.Protobuf.Compatibility
{
/// <summary>
@@ -47,6 +46,15 @@ namespace Google.Protobuf.Compatibility
internal static class TypeExtensions
{
/// <summary>
+ /// Returns true if the target type is a value type, including a nullable value type or an enum, or false
+ /// if it's a reference type (class, delegate, interface - including System.ValueType and System.Enum).
+ /// </summary>
+ internal static bool IsValueType(this Type target)
+ {
+ return target.GetTypeInfo().IsValueType;
+ }
+
+ /// <summary>
/// See https://msdn.microsoft.com/en-us/library/system.type.isassignablefrom
/// </summary>
internal static bool IsAssignableFrom(this Type target, Type c)
@@ -103,4 +111,3 @@ namespace Google.Protobuf.Compatibility
}
}
}
-#endif

Powered by Google App Engine
This is Rietveld 408576698