Browse Source

2003-10-30 Martin Baulig <[email protected]>

	* MonoGenericInst.cs (MonoInflatedMethod, MonoInflatedCtor): New
	internal classes.

svn path=/trunk/mcs/; revision=19474
Martin Baulig 22 years ago
parent
commit
ce1c9fb798

+ 5 - 0
mcs/class/corlib/System.Reflection/ChangeLog

@@ -1,3 +1,8 @@
+2003-10-30  Martin Baulig  <[email protected]>
+
+	* MonoGenericInst.cs (MonoInflatedMethod, MonoInflatedCtor): New
+	internal classes.
+
 2003-10-25  Martin Baulig  <[email protected]>
 
 	* MonoGenericInst.cs: New internal class.

+ 42 - 0
mcs/class/corlib/System.Reflection/MonoGenericInst.cs

@@ -172,4 +172,46 @@ namespace System.Reflection
 			return result;
 		}
 	}
+
+	internal class MonoInflatedMethod : MonoMethod
+	{
+		private readonly MethodInfo declaring;
+
+		public override bool IsDefined (Type attributeType, bool inherit)
+		{
+			// FIXME
+			return false;
+		}
+		public override object[] GetCustomAttributes (bool inherit)
+		{
+			// FIXME
+			return new object [0];
+		}
+		public override object[] GetCustomAttributes (Type attributeType, bool inherit)
+		{
+			// FIXME
+			return new object [0];
+		}
+	}
+
+	internal class MonoInflatedCtor : MonoCMethod
+	{
+		private readonly ConstructorInfo declaring;
+
+		public override bool IsDefined (Type attributeType, bool inherit)
+		{
+			// FIXME
+			return false;
+		}
+		public override object[] GetCustomAttributes (bool inherit)
+		{
+			// FIXME
+			return new object [0];
+		}
+		public override object[] GetCustomAttributes (Type attributeType, bool inherit)
+		{
+			// FIXME
+			return new object [0];
+		}
+	}
 }