2005-01-19 Sureshkumar T <tsureshkumar@novell.com>
[mono.git] / mcs / gmcs / pending.cs
old mode 100755 (executable)
new mode 100644 (file)
index 0772f7f..550904b
@@ -149,6 +149,9 @@ namespace Mono.CSharp {
                                MethodInfo [] mi;
                                Type t = missing.Type;
                                
+                               if (!t.IsInterface)
+                                       continue;
+
                                if (t is TypeBuilder){
                                        TypeContainer iface;
 
@@ -368,6 +371,8 @@ namespace Mono.CSharp {
                                        if (m == null)
                                                continue;
 
+                                       string mname = TypeManager.GetMethodName (m);
+
                                        //
                                        // `need_proxy' is not null when we're implementing an
                                        // interface indexer and this is Clear(One/All) operation.
@@ -377,12 +382,12 @@ namespace Mono.CSharp {
                                        // for an interface indexer).
                                        //
                                        if (name == null){
-                                               if (m.Name != tm.get_indexer_name && m.Name != tm.set_indexer_name)
+                                               if (mname != tm.get_indexer_name && mname != tm.set_indexer_name)
                                                        continue;
-                                       } else if ((need_proxy == null) && (name != m.Name))
+                                       } else if ((need_proxy == null) && (name != mname))
                                                continue;
 
-                                       if (!TypeManager.Real_IsEqual (ret_type, m.ReturnType)){
+                                       if (!TypeManager.IsEqual (ret_type, m.ReturnType)){
                                                if (!((ret_type == null && m.ReturnType == TypeManager.void_type) ||
                                                      (m.ReturnType == null && ret_type == TypeManager.void_type)))
                                                        continue;
@@ -398,7 +403,7 @@ namespace Mono.CSharp {
                                        bool fail = false;
 
                                        for (j = 0; j < top; j++){
-                                               if (!TypeManager.Real_IsEqual (tm.args [i][j], args[j])){
+                                               if (!TypeManager.IsEqual (tm.args [i][j], args[j])){
                                                        fail = true;
                                                        break;
                                                }
@@ -414,7 +419,7 @@ namespace Mono.CSharp {
                                                // a proxy if the implementation's IndexerName doesn't
                                                // match the IndexerName in the interface.
                                                bool name_matches = false;
-                                               if (name == m.Name || m.Name == tm.get_indexer_name || m.Name == tm.set_indexer_name)
+                                               if (name == mname || mname == tm.get_indexer_name || mname == tm.set_indexer_name)
                                                        name_matches = true;
                                                
                                                if ((t == null) && (need_proxy != null) && !name_matches)
@@ -462,6 +467,14 @@ namespace Mono.CSharp {
                                CallingConventions.Standard | CallingConventions.HasThis,
                                parent_method.ReturnType, args);
 
+                       ParameterData pd = Invocation.GetParameterData (iface_method);
+                       proxy.DefineParameter (0, ParameterAttributes.None, "");
+                       for (int i = 0; i < pd.Count; i++) {
+                               string name = pd.ParameterName (i);
+                               ParameterAttributes attr = Parameter.GetParameterAttributes (pd.ParameterModifier (i));
+                               ParameterBuilder pb = proxy.DefineParameter (i + 1, attr, name);
+                       }
+
                        int top = args.Length;
                        ILGenerator ig = proxy.GetILGenerator ();
 
@@ -522,7 +535,7 @@ namespace Mono.CSharp {
                        for (i = 0; i < top; i++){
                                Type type = pending_implementations [i].type;
                                int j = 0;
-                               
+
                                foreach (MethodInfo mi in pending_implementations [i].methods){
                                        if (mi == null)
                                                continue;
@@ -545,8 +558,11 @@ namespace Mono.CSharp {
                                                
                                                if (pending_implementations [i].found [j]) {
                                                        string[] methodLabel = TypeManager.CSharpSignature (mi).Split ('.');
-                                                       Report.Error (536, container.Location, "'{0}' does not implement interface member '{1}'. '{2}.{3}' is either static, not public, or has the wrong return type",
-                                                               container.Name, TypeManager.CSharpSignature (mi), container.Name, methodLabel[methodLabel.Length - 1]);
+                                                       Report.Error (536, container.Location,
+                                                                     "'{0}' does not implement interface member '{1}'. '{2}.{3}' " +
+                                                                     "is either static, not public, or has the wrong return type",
+                                                                     container.Name, TypeManager.CSharpSignature (mi),
+                                                                     container.Name, methodLabel[methodLabel.Length - 1]);
                                                }
                                                else { 
                                                        Report.Error (535, container.Location, "'{0}' does not implement interface member '{1}'",