[Mono-bugs] [Bug 26204][Nor] Changed - Problem when finding an inherited method
bugzilla-daemon@rocky.ximian.com
bugzilla-daemon@rocky.ximian.com
5 Aug 2002 22:03:13 -0000
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 martin@gnome.org.
http://bugzilla.ximian.com/show_bug.cgi?id=26204
--- shadow/26204 Mon Aug 5 17:57:53 2002
+++ shadow/26204.tmp.11235 Mon Aug 5 18:03:13 2002
@@ -1,12 +1,12 @@
Bug#: 26204
Product: Mono/MCS
Version: unspecified
OS: other
OS Details:
-Status: NEW
+Status: ASSIGNED
Resolution:
Severity: Unknown
Priority: Normal
Component: Misc
AssignedTo: martin@gnome.org
ReportedBy: lupus@ximian.com
@@ -113,8 +113,26 @@
class Y : X {
public void A (int a);
}
I can do this in the last chunk of the routine `tUrn this into a
method scan mode'.
+
+
+
+------- Additional Comments From martin@gnome.org 2002-08-05 18:03 -------
+Well, this is not as hard as it looks like.
+
+Actually, we do know that we're looking for a method since this can
+only happen from BaseAccess and you can use the `base' keyword only
+to call methods.
+
+So all that needs to be done is doing a lookup without DeclaredOnly.
+That's not so difficult and can be done in an hour or so. I'll do
+this tomorrow and test it with the ms runtime.
+
+Paolo, once this is done, can you add the missing support in
+reflection ?
+
+