[Mono-bugs] [Bug 52586][Wis] Changed - We do not handle overriden overloads correctly
bugzilla-daemon@bugzilla.ximian.com
bugzilla-daemon@bugzilla.ximian.com
Sun, 4 Jan 2004 22:21:22 -0500 (EST)
Please do not reply to this email- if you want to comment on the bug, go to the
URL shown below and enter your comments there.
Changed by bmaurer@users.sf.net.
http://bugzilla.ximian.com/show_bug.cgi?id=52586
--- shadow/52586 2004-01-04 12:47:47.000000000 -0500
+++ shadow/52586.tmp.31779 2004-01-04 22:21:22.000000000 -0500
@@ -12,12 +12,13 @@
ReportedBy: bmaurer@users.sf.net
QAContact: mono-bugs@ximian.com
TargetMilestone: ---
URL:
Cc:
Summary: We do not handle overriden overloads correctly
+BugsThisDependsOn: 26204, 52594
In this example:
using System;
class A {
@@ -77,6 +78,12 @@
Miguel -- what is the reasoning behind the MemberCache using the
special hashtable for methods in external assemblies? The comments say
you need the correct ReflectedType, why is the correct type needed?
------- Additional Comments From bmaurer@users.sf.net 2004-01-04 12:47 -------
See bug 26204.
+
+------- Additional Comments From bmaurer@users.sf.net 2004-01-04 22:21 -------
+If we fix bug 52594 we can easily fix bug 26204 and make it so that it
+does not require its own function table. This will allow us just to
+use the Member Caches that we get by walking with DeclaredOnly. So,
+then we can just ignore override functions.