|
|
@@ -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];
|
|
|
+ }
|
|
|
+ }
|
|
|
}
|