Merge pull request #1898 from alexanderkyte/debugger_variable_reflection
[mono.git] / mcs / class / corlib / System.Reflection.Emit / TypeToken.cs
index 9745aa83a7446fbee55ac3cba5f0c0bd1b794af9..9a8970e9cf1d7b60c9e46f8edaf02188d95fee25 100644 (file)
@@ -25,6 +25,8 @@
 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 //
 
+#if !FULL_AOT_RUNTIME
+using System.Runtime.InteropServices;
 
 namespace System.Reflection.Emit {
 
@@ -33,26 +35,18 @@ namespace System.Reflection.Emit {
        ///  Represents the Token returned by the metadata to represent a Type.
        /// </summary>
        [Serializable]
+       [ComVisible (true)]
        public struct TypeToken {
 
                internal int tokValue;
 
-               public static readonly TypeToken Empty;
-
-
-               static TypeToken ()
-               {
-                       Empty = new TypeToken ();
-               }
-
+               public static readonly TypeToken Empty = new TypeToken ();
 
                internal TypeToken (int val)
                {
                        tokValue = val;
                }
 
-
-
                /// <summary>
                /// </summary>
                public override bool Equals (object obj)
@@ -67,6 +61,20 @@ namespace System.Reflection.Emit {
                        return res;
                }
 
+               public bool Equals (TypeToken obj)
+               {
+                       return (this.tokValue == obj.tokValue);
+               }
+
+               public static bool operator == (TypeToken a, TypeToken b)
+               {
+                       return Equals (a, b);
+               }
+
+               public static bool operator != (TypeToken a, TypeToken b)
+               {
+                       return !Equals (a, b);
+               }
 
                /// <summary>
                ///  Tests whether the given object is an instance of
@@ -91,3 +99,4 @@ namespace System.Reflection.Emit {
 
 }
 
+#endif