2005-12-23 Miguel de Icaza <miguel@novell.com>
[mono.git] / mcs / mcs / class.cs
index 612ac1e57e3fa54b475a7034a63ce52f56a40a6a..4a723460b316d334c973294378151ef994f5aaa1 100644 (file)
@@ -83,7 +83,7 @@ namespace Mono.CSharp {
                        }
                }
 
-               public class MethodArrayList: MemberCoreArrayList
+               public class MethodArrayList : MemberCoreArrayList
                {
                        [Flags]
                        enum CachedMethods {
@@ -129,14 +129,14 @@ namespace Mono.CSharp {
                        {
                                base.DefineContainerMembers ();
  
-                               if ((RootContext.WarningLevel >= 3) && HasEquals && !HasGetHashCode) {
-                                       Report.Warning (659, container.Location, "`{0}' overrides Object.Equals(object) but does not override Object.GetHashCode()", container.GetSignatureForError ());
+                               if (HasEquals && !HasGetHashCode) {
+                                       Report.Warning (659, 3, container.Location, "`{0}' overrides Object.Equals(object) but does not override Object.GetHashCode()", container.GetSignatureForError ());
                                }
                        }
  
                }
 
-               public sealed class IndexerArrayList: MemberCoreArrayList
+               public sealed class IndexerArrayList : MemberCoreArrayList
                {
                        /// <summary>
                        /// The indexer name for this container
@@ -270,7 +270,7 @@ namespace Mono.CSharp {
                        //
                        void CheckPairedOperators ()
                        {
-                               Hashtable pairs = new Hashtable (null, null);
+                               IDictionary pairs = new HybridDictionary ();
                                Operator true_op = null;
                                Operator false_op = null;
                                bool has_equality_or_inequality = false;
@@ -369,10 +369,10 @@ namespace Mono.CSharp {
 
                                if (has_equality_or_inequality && (RootContext.WarningLevel > 2)) {
                                        if (container.Methods == null || !container.Methods.HasEquals)
-                                               Report.Warning (660, container.Location, "`{0}' defines operator == or operator != but does not override Object.Equals(object o)", container.GetSignatureForError ());
+                                               Report.Warning (660, 2, container.Location, "`{0}' defines operator == or operator != but does not override Object.Equals(object o)", container.GetSignatureForError ());
  
                                        if (container.Methods == null || !container.Methods.HasGetHashCode)
-                                               Report.Warning (661, container.Location, "`{0}' defines operator == or operator != but does not override Object.GetHashCode()", container.GetSignatureForError ());
+                                               Report.Warning (661, 2, container.Location, "`{0}' defines operator == or operator != but does not override Object.GetHashCode()", container.GetSignatureForError ());
                                }
                        }
 
@@ -473,8 +473,8 @@ namespace Mono.CSharp {
                public const string DefaultIndexerName = "Item";
 
                public TypeContainer (NamespaceEntry ns, TypeContainer parent, MemberName name,
-                                     Attributes attrs, Kind kind, Location l)
-                       : base (ns, parent, name, attrs, l)
+                                     Attributes attrs, Kind kind)
+                       : base (ns, parent, name, attrs)
                {
                        if (parent != null && parent != RootContext.Tree.Types && parent.NamespaceEntry != ns)
                                throw new InternalErrorException ("A nested type should be in the same NamespaceEntry as its enclosing class");
@@ -491,10 +491,9 @@ namespace Mono.CSharp {
                        return AddToContainer (symbol, symbol.Name);
                }
 
-               bool AddToTypeContainer (DeclSpace ds)
+               protected virtual bool AddToTypeContainer (DeclSpace ds)
                {
-                       // Parent == null ==> this == RootContext.Tree.Types
-                       return AddToContainer (ds, (Parent == null) ? ds.Name : ds.Basename);
+                       return AddToContainer (ds, ds.Basename);
                }
 
                public void AddConstant (Const constant)
@@ -519,12 +518,13 @@ namespace Mono.CSharp {
                        enums.Add (e);
                }
                
-               public void AddClassOrStruct (TypeContainer c)
+               public bool AddClassOrStruct (TypeContainer c)
                {
                        if (!AddToTypeContainer (c))
-                               return;
+                               return false;
 
                        types.Add (c);
+                       return true;
                }
 
                public void AddDelegate (Delegate d)
@@ -572,7 +572,7 @@ namespace Mono.CSharp {
                                if (c.IsDefault ()){
                                        if (default_constructor != null) {
                                                Report.SymbolRelatedToPreviousError (default_constructor);
-                                               Report.Error (111, c.Location, Error111, c.Location, c.GetSignatureForError ());
+                                               Report.Error (111, c.Location, Error111, c.GetSignatureForError ());
                                                return;
                                        }
                                        default_constructor = c;
@@ -591,16 +591,17 @@ namespace Mono.CSharp {
                        }
                }
                
-               public void AddInterface (TypeContainer iface)
+               public bool AddInterface (TypeContainer iface)
                {
                        if (!AddToTypeContainer (iface))
-                               return;
+                               return false;
 
                        if (interfaces == null) {
                                interfaces = new MemberCoreArrayList ();
                        }
 
                        interfaces.Add (iface);
+                       return true;
                }
 
                public void AddField (FieldMember field)
@@ -613,9 +614,6 @@ namespace Mono.CSharp {
 
                        fields.Add (field);
 
-                       if (field.HasInitializer)
-                               RegisterFieldForInitialization (field);
-                       
                        if ((field.ModFlags & Modifiers.STATIC) != 0)
                                return;
 
@@ -628,7 +626,7 @@ namespace Mono.CSharp {
                            first_nonstatic_field.Parent != field.Parent &&
                            RootContext.WarningLevel >= 3) {
                                Report.SymbolRelatedToPreviousError (first_nonstatic_field.Parent);
-                               Report.Warning (282, field.Location,
+                               Report.Warning (282, 3, field.Location,
                                        "struct instance field `{0}' found in different declaration from instance field `{1}'",
                                        field.GetSignatureForError (), first_nonstatic_field.GetSignatureForError ());
                        }
@@ -854,16 +852,25 @@ namespace Mono.CSharp {
                        }
                }
 
-               public virtual void RegisterFieldForInitialization (FieldMember field)
+               public bool IsComImport {
+                       get {
+                               if (OptAttributes == null)
+                                       return false;
+
+                               return OptAttributes.Contains (TypeManager.comimport_attr_type, EmitContext);
+                       }
+               }
+
+               public virtual void RegisterFieldForInitialization (FieldBase field)
                {
                        if ((field.ModFlags & Modifiers.STATIC) != 0){
                                if (initialized_static_fields == null)
-                                       initialized_static_fields = new ArrayList ();
+                                       initialized_static_fields = new ArrayList (4);
 
                                initialized_static_fields.Add (field);
                        } else {
                                if (initialized_fields == null)
-                                       initialized_fields = new ArrayList ();
+                                       initialized_fields = new ArrayList (4);
 
                                initialized_fields.Add (field);
                        }
@@ -875,42 +882,19 @@ namespace Mono.CSharp {
                public virtual bool EmitFieldInitializers (EmitContext ec)
                {
                        ArrayList fields;
-                       Expression instance_expr;
                        
                        if (ec.IsStatic){
                                fields = initialized_static_fields;
-                               instance_expr = null;
                        } else {
                                fields = initialized_fields;
-                               instance_expr = new This (Location.Null).Resolve (ec);
                        }
 
                        if (fields == null)
                                return true;
 
-                       foreach (FieldMember f in fields){
-                               Expression e = f.GetInitializerExpression (ec);
-                               if (e == null)
-                                       return false;
-
-                               Location l = f.Location;
-                               FieldExpr fe = new FieldExpr (f.FieldBuilder, l, true);
-                               fe.InstanceExpression = instance_expr;
-                               ExpressionStatement a = new Assign (fe, e, l);
-
-                               a = a.ResolveStatement (ec);
-                               if (a == null)
-                                       return false;
-
-                               Constant c = e as Constant;
-                               if (c != null) {
-                                       if (c.IsDefaultValue)
-                                               continue;
-                               }
-
-                               a.EmitStatement (ec);
+                       foreach (FieldBase f in fields) {
+                               f.EmitInitializer (ec);
                        }
-
                        return true;
                }
                
@@ -937,9 +921,7 @@ namespace Mono.CSharp {
 
                        c = new Constructor (constructor_parent, Basename, mods,
                                             Parameters.EmptyReadOnlyParameters,
-                                            new ConstructorBaseInitializer (
-                                                    null, Parameters.EmptyReadOnlyParameters,
-                                                    Location),
+                                            new GeneratedBaseInitializer (Location),
                                             Location);
                        
                        AddConstructor (c);
@@ -961,7 +943,6 @@ namespace Mono.CSharp {
                        ArrayList ifaces = new ArrayList ();
 
                        base_class = null;
-                       Location base_loc = Location.Null;
 
                        foreach (ClassPart part in parts) {
                                TypeExpr new_base_class;
@@ -973,20 +954,17 @@ namespace Mono.CSharp {
 
                                if ((base_class != null) && (new_base_class != null) &&
                                    !base_class.Equals (new_base_class)) {
+                                       Report.SymbolRelatedToPreviousError (base_class.Location, "");
                                        Report.Error (263, part.Location,
                                                      "Partial declarations of `{0}' must " +
                                                      "not specify different base classes",
                                                      Name);
 
-                                       if (!Location.IsNull (base_loc))
-                                               Report.LocationOfPreviousError (base_loc);
-
                                        return null;
                                }
 
                                if ((base_class == null) && (new_base_class != null)) {
                                        base_class = new_base_class;
-                                       base_loc = part.Location;
                                }
 
                                if (new_ifaces == null)
@@ -1201,13 +1179,12 @@ namespace Mono.CSharp {
                                return null;
                        }
 
-                       TypeManager.AddUserType (Name, this);
+                       TypeManager.AddUserType (this);
 
                        if (Parts != null) {
                                ec = null;
                                foreach (ClassPart part in Parts) {
                                        part.TypeBuilder = TypeBuilder;
-                                       part.ptype = ptype;
                                        part.ec = new EmitContext (part, Mono.CSharp.Location.Null, null, null, ModFlags);
                                        part.ec.ContainerType = TypeBuilder;
                                }
@@ -1228,6 +1205,19 @@ namespace Mono.CSharp {
                                return null;
                        }
 
+                       //
+                       // GetClassBases calls ResolveBaseTypeExpr() on the various type expressions involved,
+                       // which in turn should have called DefineType()s on base types if necessary.
+                       //
+                       // None of the code below should trigger DefineType()s on classes that we depend on.
+                       // Thus, we are eligible to be on the topological sort `type_container_resolve_order'.
+                       //
+                       // Let's do it as soon as possible, since code below can call DefineType() on classes
+                       // that depend on us to be populated before they are.
+                       //
+                       if (!(this is Iterator))
+                               RootContext.RegisterOrder (this); 
+
                        if (base_type == null) {
                                if (Kind == Kind.Class){
                                        if (RootContext.StdLib)
@@ -1250,6 +1240,9 @@ namespace Mono.CSharp {
                        if ((Kind == Kind.Struct) && TypeManager.value_type == null)
                                throw new Exception ();
 
+                       // Avoid attributes check when parent is not set
+                       TypeResolveEmitContext.TestObsoleteMethodUsage = false;
+
                        if (base_type != null) {
                                // FIXME: I think this should be ...ResolveType (Parent.EmitContext).
                                //        However, if Parent == RootContext.Tree.Types, its NamespaceEntry will be null.
@@ -1265,8 +1258,17 @@ namespace Mono.CSharp {
                                return null;
                        }
 
-                       if (ptype != null)
+                       if (ptype != null) {
                                TypeBuilder.SetParent (ptype);
+                       }
+
+                       // Attribute is undefined at the begining of corlib compilation
+                       if (TypeManager.obsolete_attribute_type != null) {
+                               TypeResolveEmitContext.TestObsoleteMethodUsage = GetObsoleteAttribute () == null;
+                               if (ptype != null && TypeResolveEmitContext.TestObsoleteMethodUsage) {
+                                       CheckObsoleteType (base_type);
+                               }
+                       }
 
                        // add interfaces that were not added at type creation
                        if (iface_exprs != null) {
@@ -1285,9 +1287,6 @@ namespace Mono.CSharp {
                                TypeManager.RegisterBuilder (TypeBuilder, ifaces);
                        }
 
-                       if (!(this is Iterator))
-                               RootContext.RegisterOrder (this); 
-
                        if (!DefineNestedTypes ()) {
                                error = true;
                                return null;
@@ -1375,12 +1374,12 @@ namespace Mono.CSharp {
                /// <summary>
                ///   Populates our TypeBuilder with fields and methods
                /// </summary>
-               public override bool DefineMembers (TypeContainer container)
+               public override bool DefineMembers ()
                {
                        if (members_defined)
                                return members_defined_ok;
 
-                       if (!base.DefineMembers (container))
+                       if (!base.DefineMembers ())
                                return false;
 
                        members_defined_ok = DoDefineMembers ();
@@ -1395,11 +1394,11 @@ namespace Mono.CSharp {
                                MemberInfo conflict_symbol = Parent.MemberCache.FindMemberWithSameName (Basename, false, TypeBuilder);
                                if (conflict_symbol == null) {
                                        if ((RootContext.WarningLevel >= 4) && ((ModFlags & Modifiers.NEW) != 0))
-                                               Report.Warning (109, Location, "The member `{0}' does not hide an inherited member. The new keyword is not required", GetSignatureForError ());
+                                               Report.Warning (109, 4, Location, "The member `{0}' does not hide an inherited member. The new keyword is not required", GetSignatureForError ());
                                } else {
                                        if ((ModFlags & Modifiers.NEW) == 0) {
                                                Report.SymbolRelatedToPreviousError (conflict_symbol);
-                                               Report.Warning (108, Location, "`{0}' hides inherited member `{1}'. Use the new keyword if hiding was intended",
+                                               Report.Warning (108, 2, Location, "`{0}' hides inherited member `{1}'. Use the new keyword if hiding was intended",
                                                        GetSignatureForError (), TypeManager.GetFullNameSignature (conflict_symbol));
                                        }
                                }
@@ -1437,7 +1436,7 @@ namespace Mono.CSharp {
 
                        if (parts != null) {
                                foreach (ClassPart part in parts) {
-                                       if (!part.DefineMembers (this))
+                                       if (!part.DefineMembers ())
                                                return false;
                                }
                        }
@@ -1475,7 +1474,7 @@ namespace Mono.CSharp {
                                }
 
                                foreach (Iterator iterator in iterators) {
-                                       if (!iterator.DefineMembers (this))
+                                       if (!iterator.DefineMembers ())
                                                return false;
                                }
                        }
@@ -1485,8 +1484,6 @@ namespace Mono.CSharp {
 
                void ReportStructInitializedInstanceError ()
                {
-                       string n = TypeBuilder.FullName;
-                       
                        foreach (Field f in initialized_fields){
                                Report.Error (573, Location,
                                        "`{0}': Structs cannot have instance field initializers",
@@ -1548,7 +1545,7 @@ namespace Mono.CSharp {
                {
                        ArrayList members = new ArrayList ();
 
-                       DefineMembers (null);
+                       DefineMembers ();
 
                        if (methods != null) {
                                int len = methods.Count;
@@ -2052,7 +2049,7 @@ namespace Mono.CSharp {
                                        continue;
 
                                if (!mc.IsUsed) {
-                                       Report.Warning (169, mc.Location, "The private {0} `{1}' is never used", member_type, mc.GetSignatureForError ());
+                                       Report.Warning (169, 3, mc.Location, "The private {0} `{1}' is never used", member_type, mc.GetSignatureForError ());
                                }
                        }
                }
@@ -2075,9 +2072,15 @@ namespace Mono.CSharp {
                                                if (!f.IsUsed){
                                                        if ((f.caching_flags & Flags.IsAssigned) == 0)
                                                                Report.Warning (169, 3, f.Location, "The private field `{0}' is never used", f.GetSignatureForError ());
-                                                       else
-                                                               Report.Warning (414, 3, f.Location, "The private field `{0}' is assigned but its value is never used",
+                                                       else {
+#if NET_2_0
+                                                               const int error_code = 414;
+#else
+                                                               const int error_code = 169;
+#endif
+                                                               Report.Warning (error_code, 3, f.Location, "The private field `{0}' is assigned but its value is never used",
                                                                        f.GetSignatureForError ());
+                                                       }
                                                        continue;
                                                }
                                                
@@ -2090,7 +2093,7 @@ namespace Mono.CSharp {
                                                if ((f.caching_flags & Flags.IsAssigned) != 0)
                                                        continue;
                                                
-                                               Report.Warning (649, f.Location, "Field `{0}' is never assigned to, and will always have its default value `{1}'",
+                                               Report.Warning (649, 4, f.Location, "Field `{0}' is never assigned to, and will always have its default value `{1}'",
                                                        f.GetSignatureForError (), f.Type.Type.IsValueType ? Activator.CreateInstance (f.Type.Type).ToString() : "null");
                                        }
                                }
@@ -2101,7 +2104,7 @@ namespace Mono.CSharp {
                ///   Emits the code, this step is performed after all
                ///   the types, enumerations, constructors
                /// </summary>
-               public void EmitType ()
+               public virtual void EmitType ()
                {
                        if (OptAttributes != null)
                                OptAttributes.Emit (ec, this);
@@ -2130,7 +2133,7 @@ namespace Mono.CSharp {
                        Emit ();
 
                        if (instance_constructors != null) {
-                               if (TypeBuilder.IsSubclassOf (TypeManager.attribute_type) && RootContext.VerifyClsCompliance && IsClsCompliaceRequired (this)) {
+                               if (TypeBuilder.IsSubclassOf (TypeManager.attribute_type) && RootContext.VerifyClsCompliance && IsClsComplianceRequired (this)) {
                                        bool has_compliant_args = false;
 
                                        foreach (Constructor c in instance_constructors) {
@@ -2379,8 +2382,8 @@ namespace Mono.CSharp {
                                Report.Error (3009, Location, "`{0}': base type `{1}' is not CLS-compliant", GetSignatureForError (), TypeManager.CSharpName (base_type));
                        }
 
-                       if (!Parent.IsClsCompliaceRequired (ds)) {
-                               Report.Error (3018, Location, "`{0}' cannot be marked as CLS-Compliant because it is a member of non CLS-Compliant type `{1}'", 
+                       if (!Parent.IsClsComplianceRequired (ds)) {
+                               Report.Error (3018, Location, "`{0}' cannot be marked as CLS-compliant because it is a member of non CLS-compliant type `{1}'", 
                                        GetSignatureForError (), Parent.GetSignatureForError ());
                        }
                        return true;
@@ -2399,10 +2402,10 @@ namespace Mono.CSharp {
 
                        foreach (DictionaryEntry entry in defined_names) {
                                MemberCore mc = (MemberCore)entry.Value;
-                               if (!mc.IsClsCompliaceRequired (this))
+                               if (!mc.IsClsComplianceRequired (mc.Parent))
                                        continue;
 
-                               string name = (string)entry.Key;
+                               string name = (string) entry.Key;
                                string basename = name.Substring (name.LastIndexOf ('.') + 1);
 
                                string lcase = basename.ToLower (System.Globalization.CultureInfo.InvariantCulture);
@@ -2419,9 +2422,9 @@ namespace Mono.CSharp {
                                        continue;                                       
 
                                if (found is MemberInfo) {
-                                       if (basename == ((MemberInfo)found).Name)
+                                       if (basename == ((MemberInfo) found).Name)
                                                continue;
-                                       Report.SymbolRelatedToPreviousError ((MemberInfo)found);
+                                       Report.SymbolRelatedToPreviousError ((MemberInfo) found);
                                } else {
                                        Report.SymbolRelatedToPreviousError ((MemberCore) found);
                                }
@@ -2449,18 +2452,15 @@ namespace Mono.CSharp {
                        return false;
                }
 
-               protected override void VerifyObsoleteAttribute()
+               public virtual void Mark_HasEquals ()
                {
-                       CheckUsageOfObsoleteAttribute (ptype);
-
-                       if (ifaces == null)
-                               return;
-
-                       foreach (Type iface in ifaces) {
-                               CheckUsageOfObsoleteAttribute (iface);
-                       }
+                       Methods.HasEquals = true;
                }
 
+               public virtual void Mark_HasGetHashCode ()
+               {
+                       Methods.HasGetHashCode = true;
+               }
 
                //
                // IMemberContainer
@@ -2527,40 +2527,28 @@ namespace Mono.CSharp {
                public readonly int OriginalModFlags;
                public readonly int AllowedModifiers;
                public readonly TypeAttributes DefaultTypeAttributes;
+               public ListDictionary DeclarativeSecurity;
 
                static PartialContainer Create (NamespaceEntry ns, TypeContainer parent,
-                                               MemberName member_name, int mod_flags, Kind kind,
-                                               Location loc)
+                                               MemberName member_name, int mod_flags, Kind kind)
                {
-                       PartialContainer pc;
-                       DeclSpace ds = RootContext.Tree.GetDecl (member_name);
-                       if (ds != null) {
-                               pc = ds as PartialContainer;
 
-                               if (pc == null) {
-                                       Report.LocationOfPreviousError (loc);
-                                       Report.Error (260, ds.Location,
-                                               "Missing partial modifier on declaration of type `{0}'. Another partial declaration of this type exists",
-                                               member_name.GetPartialName());
-
-                                       return null;
-                               }
+                       if (!CheckModFlags (0, mod_flags, member_name))
+                               return null;
 
+                       PartialContainer pc = RootContext.Tree.GetDecl (member_name) as PartialContainer;
+                       if (pc != null) {
                                if (pc.Kind != kind) {
                                        Report.Error (
-                                               261, loc, "Partial declarations of `{0}' " +
+                                               261, member_name.Location, "Partial declarations of `{0}' " +
                                                "must be all classes, all structs or " +
                                                "all interfaces", member_name.GetPartialName ());
                                        return null;
                                }
 
-                               if (pc.OriginalModFlags != mod_flags) {
-                                       Report.Error (
-                                               262, loc, "Partial declarations of `{0}' " +
-                                               "have conflicting accessibility modifiers",
-                                               member_name.GetPartialName ());
+                               if (!CheckModFlags (pc.OriginalModFlags, mod_flags, member_name))
                                        return null;
-                               }
+                               pc.ModFlags |= (mod_flags & pc.AllowedModifiers);
 
                                return pc;
                        }
@@ -2568,38 +2556,70 @@ namespace Mono.CSharp {
                        if (parent is ClassPart)
                                parent = ((ClassPart) parent).PartialContainer;
 
-                       pc = new PartialContainer (ns.NS, parent, member_name, mod_flags, kind, loc);
-                       RootContext.Tree.RecordDecl (ns.NS, member_name, pc);
+                       pc = new PartialContainer (ns.NS, parent, member_name, mod_flags, kind);
 
-                       if (kind == Kind.Interface)
-                               parent.AddInterface (pc);
-                       else if (kind == Kind.Class || kind == Kind.Struct)
-                               parent.AddClassOrStruct (pc);
-                       else
+                       if (kind == Kind.Interface) {
+                               if (!parent.AddInterface (pc))
+                                       return null;
+                       } else if (kind == Kind.Class || kind == Kind.Struct) {
+                               if (!parent.AddClassOrStruct (pc))
+                                       return null;
+                       } else {
                                throw new InvalidOperationException ();
-
+                       }
+                       RootContext.Tree.RecordDecl (ns.NS, member_name, pc);
                        return pc;
                }
 
+               static bool CheckModFlags (int flags_org, int flags, MemberName member_name)
+               {
+                       // Check (abstract|static|sealed) sanity.
+                       int tmp = (flags_org | flags) & (Modifiers.ABSTRACT | Modifiers.SEALED | Modifiers.STATIC);
+                       if ((tmp & Modifiers.ABSTRACT) != 0) {
+                               if ((tmp & (Modifiers.STATIC | Modifiers.SEALED)) != 0) {
+                                       Report.Error (
+                                               418, member_name.Location, 
+                                               "`{0}': an abstract class cannot be sealed or static", member_name.ToString ());
+                                       return false;
+                               }
+                       } else if (tmp == (Modifiers.SEALED | Modifiers.STATIC)) {
+                               Report.Error (441, member_name.Location, "`{0}': a class cannot be both static and sealed", member_name.ToString ());
+                               return false;
+                       }
+
+                       if (flags_org == 0)
+                               return true;
+
+                       // Check conflicts.
+                       if (0 != ((flags_org ^ flags) & (0xFFFFFFFF ^ (Modifiers.SEALED | Modifiers.ABSTRACT)))) {
+                               Report.Error (
+                                       262, member_name.Location, "Partial declarations of `{0}' " +
+                                       "have conflicting accessibility modifiers",
+                                       member_name.GetPartialName ());
+                               return false;
+                       }
+                       return true;
+               }
+
                public static ClassPart CreatePart (NamespaceEntry ns, TypeContainer parent,
                                                    MemberName name, int mod, Attributes attrs,
                                                    Kind kind, Location loc)
                {
-                       PartialContainer pc = Create (ns, parent, name, mod, kind, loc);
+                       PartialContainer pc = Create (ns, parent, name, mod, kind);
                        if (pc == null) {
                                // An error occured; create a dummy container, but don't
                                // register it.
-                               pc = new PartialContainer (ns.NS, parent, name, mod, kind, loc);
+                               pc = new PartialContainer (ns.NS, parent, name, mod, kind);
                        }
 
-                       ClassPart part = new ClassPart (ns, pc, parent, mod, attrs, kind, loc);
+                       ClassPart part = new ClassPart (ns, pc, parent, mod, attrs, kind);
                        pc.AddPart (part);
                        return part;
                }
 
                protected PartialContainer (Namespace ns, TypeContainer parent,
-                                           MemberName name, int mod, Kind kind, Location l)
-                       : base (null, parent, name, null, kind, l)
+                                           MemberName name, int mod, Kind kind)
+                       : base (null, parent, name, null, kind)
                {
                        this.Namespace = ns;
 
@@ -2629,15 +2649,31 @@ namespace Mono.CSharp {
                        else
                                accmods = Modifiers.PRIVATE;
 
-                       this.ModFlags = Modifiers.Check (AllowedModifiers, mod, accmods, l);
+                       this.ModFlags = Modifiers.Check (AllowedModifiers, mod, accmods, Location);
                        this.OriginalModFlags = mod;
                }
 
+               public override void EmitType ()
+               {
+                       base.EmitType ();
+
+                       if (DeclarativeSecurity != null) {
+                               foreach (DictionaryEntry de in DeclarativeSecurity) {
+                                       TypeBuilder.AddDeclarativeSecurity ((SecurityAction)de.Key, (PermissionSet)de.Value);
+                               }
+                       }
+               }
+
                public override PendingImplementation GetPendingImplementations ()
                {
                        return PendingImplementation.GetPendingImplementations (this);
                }
 
+               public override bool MarkForDuplicationCheck ()
+               {
+                       return true;
+               }
+
                protected override TypeAttributes TypeAttr {
                        get {
                                return base.TypeAttr | DefaultTypeAttributes;
@@ -2650,8 +2686,8 @@ namespace Mono.CSharp {
                public readonly bool IsPartial;
 
                public ClassPart (NamespaceEntry ns, PartialContainer pc, TypeContainer parent,
-                                 int mod, Attributes attrs, Kind kind, Location l)
-                       : base (ns, parent, pc.MemberName, attrs, kind, l)
+                                 int mod, Attributes attrs, Kind kind)
+                       : base (ns, parent, pc.MemberName, attrs, kind)
                {
                        this.PartialContainer = pc;
                        this.IsPartial = true;
@@ -2662,7 +2698,20 @@ namespace Mono.CSharp {
                        else
                                accmods = Modifiers.PRIVATE;
 
-                       this.ModFlags = Modifiers.Check (pc.AllowedModifiers, mod, accmods, l);
+                       this.ModFlags = Modifiers.Check (pc.AllowedModifiers, mod, accmods, pc.MemberName.Location);
+               }
+
+               public override void ApplyAttributeBuilder (Attribute a, CustomAttributeBuilder cb)
+               {
+                       if (a.Type.IsSubclassOf (TypeManager.security_attr_type) && a.CheckSecurityActionValidity (false)) {
+                               if (PartialContainer.DeclarativeSecurity == null)
+                                       PartialContainer.DeclarativeSecurity = new ListDictionary ();
+
+                               a.ExtractSecurityPermissionSet (PartialContainer.DeclarativeSecurity);
+                               return;
+                       }
+
+                       base.ApplyAttributeBuilder (a, cb);
                }
 
                public override PendingImplementation GetPendingImplementations ()
@@ -2676,7 +2725,7 @@ namespace Mono.CSharp {
                }
 
 
-               public override void RegisterFieldForInitialization (FieldMember field)
+               public override void RegisterFieldForInitialization (FieldBase field)
                {
                        PartialContainer.RegisterFieldForInitialization (field);
                }
@@ -2702,6 +2751,15 @@ namespace Mono.CSharp {
                        throw new InternalErrorException ("Should not get here");
                }
 
+               public override void Mark_HasEquals ()
+               {
+                       PartialContainer.Mark_HasEquals ();
+               }
+
+               public override void Mark_HasGetHashCode ()
+               {
+                       PartialContainer.Mark_HasGetHashCode ();
+               }
        }
 
        public abstract class ClassOrStruct : TypeContainer {
@@ -2709,9 +2767,8 @@ namespace Mono.CSharp {
                ListDictionary declarative_security;
 
                public ClassOrStruct (NamespaceEntry ns, TypeContainer parent,
-                                     MemberName name, Attributes attrs, Kind kind,
-                                     Location l)
-                       : base (ns, parent, name, attrs, kind, l)
+                                     MemberName name, Attributes attrs, Kind kind)
+                       : base (ns, parent, name, attrs, kind)
                {
                }
 
@@ -2771,11 +2828,11 @@ namespace Mono.CSharp {
        /// </summary>
        public sealed class StaticClass: Class {
                public StaticClass (NamespaceEntry ns, TypeContainer parent, MemberName name, int mod,
-                       Attributes attrs, Location l)
-                       : base (ns, parent, name, mod, attrs, l)
+                       Attributes attrs)
+                       : base (ns, parent, name, mod, attrs)
                {
                        if (RootContext.Version == LanguageVersion.ISO_1) {
-                               Report.FeatureIsNotStandardized (l, "static classes");
+                               Report.FeatureIsNotStandardized (Location, "static classes");
                        }
                }
 
@@ -2793,12 +2850,19 @@ namespace Mono.CSharp {
 
                        foreach (MemberCore m in list) {
                                if (m is Operator) {
-                                       Report.Error (715, m.Location, "`{0}': static classes cannot contain user-defined operators", m.GetSignatureForError ());
+                                       Report.Error (715, m.Location, "`{0}': Static classes cannot contain user-defined operators", m.GetSignatureForError ());
                                        continue;
                                }
 
-                               if ((m.ModFlags & Modifiers.PROTECTED) != 0)
-                                       Report.Warning (-628, 4, m.Location, "`{0}': new protected member declared in static class", m.GetSignatureForError ());
+                               if (m is Destructor) {
+                                       Report.Error (711, m.Location, "`{0}': Static classes cannot contain destructor", GetSignatureForError ());
+                                       continue;
+                               }
+
+                               if ((m.ModFlags & Modifiers.PROTECTED) != 0) {
+                                       Report.Error (1057, m.Location, "`{0}': Static classes cannot contain protected members", m.GetSignatureForError ());
+                                       continue;
+                               }
 
                                if (m is Indexer) {
                                        Report.Error (720, m.Location, "`{0}': cannot declare indexers in a static class", m.GetSignatureForError ());
@@ -2813,11 +2877,6 @@ namespace Mono.CSharp {
                                        continue;
                                }
 
-                               if (m is Destructor) {
-                                       Report.Error (711, m.Location, "`{0}': Static classes cannot contain destructor", GetSignatureForError ());
-                                       continue;
-                               }
-
                                Report.Error (708, m.Location, "`{0}': cannot declare instance members in a static class", m.GetSignatureForError ());
                        }
 
@@ -2868,8 +2927,8 @@ namespace Mono.CSharp {
                        Modifiers.UNSAFE;
 
                public Class (NamespaceEntry ns, TypeContainer parent, MemberName name, int mod,
-                             Attributes attrs, Location l)
-                       : base (ns, parent, name, attrs, Kind.Class, l)
+                             Attributes attrs)
+                       : base (ns, parent, name, attrs, Kind.Class)
                {
                        this.ModFlags = mod;
                }
@@ -2968,8 +3027,8 @@ namespace Mono.CSharp {
                        Modifiers.PRIVATE;
 
                public Struct (NamespaceEntry ns, TypeContainer parent, MemberName name,
-                              int mod, Attributes attrs, Location l)
-                       : base (ns, parent, name, attrs, Kind.Struct, l)
+                              int mod, Attributes attrs)
+                       : base (ns, parent, name, attrs, Kind.Struct)
                {
                        int accmods;
                        
@@ -2978,7 +3037,7 @@ namespace Mono.CSharp {
                        else
                                accmods = Modifiers.PRIVATE;
                        
-                       this.ModFlags = Modifiers.Check (AllowedModifiers, mod, accmods, l);
+                       this.ModFlags = Modifiers.Check (AllowedModifiers, mod, accmods, Location);
 
                        this.ModFlags |= Modifiers.SEALED;
                }
@@ -3017,8 +3076,8 @@ namespace Mono.CSharp {
                        Modifiers.PRIVATE;
 
                public Interface (NamespaceEntry ns, TypeContainer parent, MemberName name, int mod,
-                                 Attributes attrs, Location l)
-                       : base (ns, parent, name, attrs, Kind.Interface, l)
+                                 Attributes attrs)
+                       : base (ns, parent, name, attrs, Kind.Interface)
                {
                        int accmods;
 
@@ -3027,7 +3086,7 @@ namespace Mono.CSharp {
                        else
                                accmods = Modifiers.PRIVATE;
 
-                       this.ModFlags = Modifiers.Check (AllowedModifiers, mod, accmods, l);
+                       this.ModFlags = Modifiers.Check (AllowedModifiers, mod, accmods, name.Location);
                }
 
                public override PendingImplementation GetPendingImplementations ()
@@ -3070,12 +3129,6 @@ namespace Mono.CSharp {
                public readonly Parameters Parameters;
                protected ToplevelBlock block;
                
-               //
-               // Parameters, cached for semantic analysis.
-               //
-               protected InternalParameters parameter_info;
-               protected Type [] parameter_types;
-
                // Whether this is an operator method.
                public Operator IsOperator;
 
@@ -3088,9 +3141,9 @@ namespace Mono.CSharp {
 
                public MethodCore (TypeContainer parent, Expression type, int mod,
                                   int allowed_mod, bool is_interface, MemberName name,
-                                  Attributes attrs, Parameters parameters, Location loc)
+                                  Attributes attrs, Parameters parameters)
                        : base (parent, type, mod, allowed_mod, Modifiers.PRIVATE, name,
-                               attrs, loc)
+                               attrs)
                {
                        Parameters = parameters;
                        IsInterface = is_interface;
@@ -3101,14 +3154,14 @@ namespace Mono.CSharp {
                //
                public Type [] ParameterTypes {
                        get {
-                               return parameter_types;
+                               return Parameters.Types;
                        }
                }
 
-               public InternalParameters ParameterInfo
+               public Parameters ParameterInfo
                {
                        get {
-                               return parameter_info;
+                               return Parameters;
                        }
                }
                
@@ -3145,7 +3198,7 @@ namespace Mono.CSharp {
                        // Is null for System.Object while compiling corlib and base interfaces
                        if (Parent.BaseCache == null) {
                                if ((RootContext.WarningLevel >= 4) && ((ModFlags & Modifiers.NEW) != 0)) {
-                                       Report.Warning (109, Location, "The member `{0}' does not hide an inherited member. The new keyword is not required", GetSignatureForError ());
+                                       Report.Warning (109, 4, Location, "The member `{0}' does not hide an inherited member. The new keyword is not required", GetSignatureForError ());
                                }
                                return true;
                        }
@@ -3186,12 +3239,10 @@ namespace Mono.CSharp {
                                        return false;
                                }
 
-                               if (RootContext.WarningLevel > 2) {
-                                       if (Name == "Equals" && parameter_types.Length == 1 && parameter_types [0] == TypeManager.object_type)
-                                               Parent.Methods.HasEquals = true;
-                                       else if (Name == "GetHashCode" && parameter_types.Length == 0)
-                                               Parent.Methods.HasGetHashCode = true;
-                               }
+                               if (Name == "Equals" && Parameters.Count == 1 && ParameterTypes [0] == TypeManager.object_type)
+                                       Parent.Mark_HasEquals ();
+                               else if (Name == "GetHashCode" && Parameters.Empty)
+                                       Parent.Mark_HasGetHashCode ();
 
                                if ((ModFlags & Modifiers.OVERRIDE) != 0) {
                                        ObsoleteAttribute oa = AttributeTester.GetMethodObsoleteAttribute (base_method);
@@ -3222,7 +3273,7 @@ namespace Mono.CSharp {
 
                        if (conflict_symbol == null) {
                                if ((RootContext.WarningLevel >= 4) && ((ModFlags & Modifiers.NEW) != 0)) {
-                                       Report.Warning (109, Location, "The member `{0}' does not hide an inherited member. The new keyword is not required", GetSignatureForError ());
+                                       Report.Warning (109, 4, Location, "The member `{0}' does not hide an inherited member. The new keyword is not required", GetSignatureForError ());
                                }
                                return true;
                        }
@@ -3232,7 +3283,7 @@ namespace Mono.CSharp {
                                        return true;
 
                                Report.SymbolRelatedToPreviousError (conflict_symbol);
-                               Report.Warning (108, Location, "`{0}' hides inherited member `{1}'. Use the new keyword if hiding was intended",
+                               Report.Warning (108, 2, Location, "`{0}' hides inherited member `{1}'. Use the new keyword if hiding was intended",
                                        GetSignatureForError (), TypeManager.GetFullNameSignature (conflict_symbol));
                        }
 
@@ -3282,10 +3333,10 @@ namespace Mono.CSharp {
                                ModFlags |= Modifiers.NEW;
                                Report.SymbolRelatedToPreviousError (base_method);
                                if (!IsInterface && (base_method.IsVirtual || base_method.IsAbstract)) {
-                                       if (RootContext.WarningLevel >= 2)
-                                               Report.Warning (114, Location, "`{0}' hides inherited member `{1}'. To make the current member override that implementation, add the override keyword. Otherwise add the new keyword", GetSignatureForError (), TypeManager.CSharpSignature (base_method));
+                                       Report.Warning (114, 2, Location, "`{0}' hides inherited member `{1}'. To make the current member override that implementation, add the override keyword. Otherwise add the new keyword",
+                                               GetSignatureForError (), TypeManager.CSharpSignature (base_method));
                                } else {
-                                       Report.Warning (108, Location, "`{0}' hides inherited member `{1}'. Use the new keyword if hiding was intended",
+                                       Report.Warning (108, 2, Location, "`{0}' hides inherited member `{1}'. Use the new keyword if hiding was intended",
                                                GetSignatureForError (), TypeManager.CSharpSignature (base_method));
                                }
                        }
@@ -3397,7 +3448,7 @@ namespace Mono.CSharp {
                /// </summary>
                protected abstract MethodInfo FindOutBaseMethod (TypeContainer container, ref Type base_ret_type);
 
-               protected virtual bool DoDefineParameters ()
+               protected bool DoDefineParameters ()
                {
                        EmitContext ec = Parent.EmitContext;
                        if (ec == null)
@@ -3405,25 +3456,63 @@ namespace Mono.CSharp {
 
                        bool old_unsafe = ec.InUnsafe;
                        ec.InUnsafe = InUnsafe;
+
+                       bool old_obsolete = ec.TestObsoleteMethodUsage;
+                       if (GetObsoleteAttribute () != null || Parent.GetObsoleteAttribute () != null)
+                               ec.TestObsoleteMethodUsage = false;
+
                        // Check if arguments were correct
-                       parameter_types = Parameters.GetParameterInfo (ec);
+                       if (!Parameters.Resolve (ec))
+                               return false;
+
                        ec.InUnsafe = old_unsafe;
+                       ec.TestObsoleteMethodUsage = old_obsolete;
 
-                       if ((parameter_types == null) ||
-                           !CheckParameters (Parent, parameter_types))
-                               return false;
+                       return CheckParameters (ParameterTypes);
+               }
 
-                       parameter_info = new InternalParameters (parameter_types, Parameters);
+               bool CheckParameters (Type [] parameters)
+               {
+                       bool error = false;
+                       DeclSpace ds = Parent;
 
-                       Parameter array_param = Parameters.ArrayParameter;
-                       if ((array_param != null) &&
-                           (!array_param.ParameterType.IsArray ||
-                            (array_param.ParameterType.GetArrayRank () != 1))) {
-                               Report.Error (225, Location, "The params parameter must be a single dimensional array");
-                               return false;
+                       foreach (Type partype in parameters){
+                               if (partype == TypeManager.void_type) {
+                                       Report.Error (
+                                               1547, Location, "Keyword 'void' cannot " +
+                                               "be used in this context");
+                                       return false;
+                               }
+
+                               if (partype.IsPointer){
+                                       if (!UnsafeOK (ds))
+                                               error = true;
+                                       if (!TypeManager.VerifyUnManaged (TypeManager.GetElementType (partype), Location))
+                                               error = true;
+                               }
+
+                               if (ds.AsAccessible (partype, ModFlags))
+                                       continue;
+
+                               if (this is Indexer)
+                                       Report.Error (55, Location,
+                                               "Inconsistent accessibility: parameter type `" +
+                                               TypeManager.CSharpName (partype) + "' is less " +
+                                               "accessible than indexer `" + GetSignatureForError () + "'");
+                               else if ((this is Method) && ((Method) this).IsOperator != null)
+                                       Report.Error (57, Location,
+                                               "Inconsistent accessibility: parameter type `" +
+                                               TypeManager.CSharpName (partype) + "' is less " +
+                                               "accessible than operator `" + GetSignatureForError () + "'");
+                               else
+                                       Report.Error (51, Location,
+                                               "Inconsistent accessibility: parameter type `" +
+                                               TypeManager.CSharpName (partype) + "' is less " +
+                                               "accessible than method `" + GetSignatureForError () + "'");
+                               error = true;
                        }
 
-                       return true;
+                       return !error;
                }
 
                public override string[] ValidAttributeTargets {
@@ -3435,7 +3524,7 @@ namespace Mono.CSharp {
                protected override bool VerifyClsCompliance (DeclSpace ds)
                {
                        if (!base.VerifyClsCompliance (ds)) {
-                               if ((ModFlags & Modifiers.ABSTRACT) != 0 && IsExposedFromAssembly (ds) && ds.IsClsCompliaceRequired (ds)) {
+                               if ((ModFlags & Modifiers.ABSTRACT) != 0 && IsExposedFromAssembly (ds) && ds.IsClsComplianceRequired (ds)) {
                                        Report.Error (3011, Location, "`{0}': only CLS-compliant members can be abstract", GetSignatureForError ());
                                }
                                return false;
@@ -3454,18 +3543,21 @@ namespace Mono.CSharp {
                                                      GetSignatureForError ());
                        }
 
-                       AttributeTester.AreParametersCompliant (Parameters.FixedParameters, Location);
+                       Parameters.VerifyClsCompliance ();
 
                        return true;
                }
 
                protected bool IsDuplicateImplementation (MethodCore method)
                {
-                       if ((method == this) || (method.Name != Name))
+                       if (method == this || !(method.MemberName.Equals (MemberName)))
                                return false;
 
                        Type[] param_types = method.ParameterTypes;
-                       if (param_types == null)
+                       // This never happen. Rewrite this as Equal
+                       if (param_types == null && ParameterTypes == null)
+                               return true;
+                       if (param_types == null || ParameterTypes == null)
                                return false;
 
                        if (param_types.Length != ParameterTypes.Length)
@@ -3484,8 +3576,8 @@ namespace Mono.CSharp {
                        //
                        // Try to report 663: method only differs on out/ref
                        //
-                       ParameterData info = ParameterInfo;
-                       ParameterData other_info = method.ParameterInfo;
+                       Parameters info = ParameterInfo;
+                       Parameters other_info = method.ParameterInfo;
                        for (int i = 0; i < info.Count; i++){
                                if (info.ParameterModifier (i) != other_info.ParameterModifier (i)){
                                        Report.SymbolRelatedToPreviousError (method);
@@ -3503,14 +3595,8 @@ namespace Mono.CSharp {
                        return true;
                }
 
-               public override bool IsUsed
-               {
-                       get {
-                               if (IsExplicitImpl)
-                                       return true;
-
-                               return base.IsUsed;
-                       }
+               public override bool IsUsed {
+                       get { return IsExplicitImpl || base.IsUsed; }
                }
 
                //
@@ -3541,17 +3627,6 @@ namespace Mono.CSharp {
                        get { return "M:"; }
                }
 
-               protected override void VerifyObsoleteAttribute()
-               {
-                       base.VerifyObsoleteAttribute ();
-
-                       if (parameter_types == null)
-                               return;
-
-                       foreach (Type type in parameter_types) {
-                               CheckUsageOfObsoleteAttribute (type);
-                       }
-               }
        }
 
        public class SourceMethod : ISourceMethod
@@ -3566,7 +3641,7 @@ namespace Mono.CSharp {
                        this.builder = builder;
                        
                        CodeGen.SymbolWriter.OpenMethod (
-                               file, this, start.Row, 0, end.Row, 0);
+                               file, this, start.Row, start.Column, end.Row, start.Column);
                }
 
                public string Name {
@@ -3603,11 +3678,11 @@ namespace Mono.CSharp {
                                return null;
 
                        Location start_loc = block.StartLocation;
-                       if (Location.IsNull (start_loc))
+                       if (start_loc.IsNull)
                                return null;
 
                        Location end_loc = block.EndLocation;
-                       if (Location.IsNull (end_loc))
+                       if (end_loc.IsNull)
                                return null;
 
                        ISourceFile file = start_loc.SourceFile;
@@ -3650,11 +3725,10 @@ namespace Mono.CSharp {
                // return_type can be "null" for VOID values.
                //
                public Method (TypeContainer ds, Expression return_type, int mod, bool is_iface,
-                              MemberName name, Parameters parameters, Attributes attrs,
-                              Location l)
+                              MemberName name, Parameters parameters, Attributes attrs)
                        : base (ds, return_type, mod,
                                is_iface ? AllowedInterfaceModifiers : AllowedModifiers,
-                               is_iface, name, attrs, parameters, l)
+                               is_iface, name, attrs, parameters)
                {
                }
 
@@ -3681,7 +3755,7 @@ namespace Mono.CSharp {
                                 TypeManager.CSharpSignature(b) + "'");
                 }
 
-                public bool IsEntryPoint (MethodBuilder b, InternalParameters pinfo)
+                bool IsEntryPoint (MethodBuilder b, Parameters pinfo)
                 {
                         if (b.ReturnType != TypeManager.void_type &&
                             b.ReturnType != TypeManager.int32_type)
@@ -3762,8 +3836,8 @@ namespace Mono.CSharp {
                                        return;
                                }
 
-                               for (int i = 0; i < parameter_info.Count; ++i) {
-                                       if ((parameter_info.ParameterModifier (i) & Parameter.Modifier.OUT) != 0) {
+                               for (int i = 0; i < ParameterInfo.Count; ++i) {
+                                       if ((ParameterInfo.ParameterModifier (i) & Parameter.Modifier.OUTMASK) != 0) {
                                                Report.Error (685, Location, "Conditional method `{0}' cannot have an out parameter", GetSignatureForError ());
                                                return;
                                        }
@@ -3838,7 +3912,7 @@ namespace Mono.CSharp {
                        if (IsOperator != null)
                                flags |= MethodAttributes.SpecialName | MethodAttributes.HideBySig;
 
-                       MethodData = new MethodData (this, ParameterInfo, ModFlags, flags, this);
+                       MethodData = new MethodData (this, ModFlags, flags, this);
 
                        if (!MethodData.Define (Parent))
                                return false;
@@ -3854,7 +3928,7 @@ namespace Mono.CSharp {
                        if ((ModFlags & Modifiers.METHOD_YIELDS) != 0){
                                Iterator iterator = new Iterator (this,
                                        Parent,
-                                       ParameterInfo, ModFlags);
+                                       ModFlags);
 
                                if (!iterator.DefineIterator ())
                                        return false;
@@ -3882,7 +3956,7 @@ namespace Mono.CSharp {
                                         }
                                 } else {
                                        if (RootContext.WarningLevel >= 4)
-                                               Report.Warning (28, Location, "`{0}' has the wrong signature to be an entry point", TypeManager.CSharpSignature(MethodBuilder));
+                                               Report.Warning (28, 4, Location, "`{0}' has the wrong signature to be an entry point", TypeManager.CSharpSignature(MethodBuilder));
                                }
                        }
 
@@ -3940,7 +4014,7 @@ namespace Mono.CSharp {
                        if (!base.VerifyClsCompliance (ds))
                                return false;
 
-                       if (parameter_types.Length > 0) {
+                       if (ParameterInfo.Count > 0) {
                                ArrayList al = (ArrayList)ds.MemberCache.Members [Name];
                                if (al.Count > 1)
                                        ds.MemberCache.VerifyClsParameterConflict (al, this, MethodBuilder);
@@ -3953,7 +4027,7 @@ namespace Mono.CSharp {
 
                public CallingConventions CallingConventions {
                        get {
-                               CallingConventions cc = Parameters.GetCallingConvention ();
+                               CallingConventions cc = Parameters.CallingConvention;
                                if (Parameters.HasArglist)
                                        block.HasVarargs = true;
 
@@ -4011,11 +4085,6 @@ namespace Mono.CSharp {
                        return ec;
                }
 
-               public ObsoleteAttribute GetObsoleteAttribute ()
-               {
-                       return GetObsoleteAttribute (Parent);
-               }
-
                /// <summary>
                /// Returns true if method has conditional attribute and the conditions is not defined (method is excluded).
                /// </summary>
@@ -4067,14 +4136,11 @@ namespace Mono.CSharp {
        public abstract class ConstructorInitializer {
                ArrayList argument_list;
                protected ConstructorInfo base_constructor;
-               Parameters parameters;
                Location loc;
                
-               public ConstructorInitializer (ArrayList argument_list, Parameters parameters,
-                                              Location loc)
+               public ConstructorInitializer (ArrayList argument_list, Location loc)
                {
                        this.argument_list = argument_list;
-                       this.parameters = parameters;
                        this.loc = loc;
                }
 
@@ -4153,7 +4219,7 @@ namespace Mono.CSharp {
                        return true;
                }
 
-               public void Emit (EmitContext ec)
+               public virtual void Emit (EmitContext ec)
                {
                        if (base_constructor != null){
                                ec.Mark (loc, false);
@@ -4166,15 +4232,30 @@ namespace Mono.CSharp {
        }
 
        public class ConstructorBaseInitializer : ConstructorInitializer {
-               public ConstructorBaseInitializer (ArrayList argument_list, Parameters pars, Location l) :
-                       base (argument_list, pars, l)
+               public ConstructorBaseInitializer (ArrayList argument_list, Location l) :
+                       base (argument_list, l)
+               {
+               }
+       }
+
+       class GeneratedBaseInitializer: ConstructorBaseInitializer {
+               public GeneratedBaseInitializer (Location loc):
+                       base (null, loc)
+               {
+               }
+
+               public override void Emit(EmitContext ec)
                {
+                       bool old = ec.TestObsoleteMethodUsage;
+                       ec.TestObsoleteMethodUsage = false;
+                       base.Emit (ec);
+                       ec.TestObsoleteMethodUsage = old;
                }
        }
 
        public class ConstructorThisInitializer : ConstructorInitializer {
-               public ConstructorThisInitializer (ArrayList argument_list, Parameters pars, Location l) :
-                       base (argument_list, pars, l)
+               public ConstructorThisInitializer (ArrayList argument_list, Location l) :
+                       base (argument_list, l)
                {
                }
        }
@@ -4202,9 +4283,9 @@ namespace Mono.CSharp {
                // my very own code has static constructors.
                //
                public Constructor (TypeContainer ds, string name, int mod, Parameters args,
-                                   ConstructorInitializer init, Location l)
-                       : base (ds, null, mod, AllowedModifiers, false, new MemberName (name),
-                               null, args, l)
+                                   ConstructorInitializer init, Location loc)
+                       : base (ds, null, mod, AllowedModifiers, false, new MemberName (name, loc),
+                               null, args)
                {
                        Initializer = init;
                }
@@ -4228,12 +4309,9 @@ namespace Mono.CSharp {
                public bool IsDefault ()
                {
                        if ((ModFlags & Modifiers.STATIC) != 0)
-                               return  (Parameters.FixedParameters == null ? true : Parameters.Empty) &&
-                                       (Parameters.ArrayParameter == null ? true : Parameters.Empty);
+                               return Parameters.Empty;
                        
-                       else
-                               return  (Parameters.FixedParameters == null ? true : Parameters.Empty) &&
-                                       (Parameters.ArrayParameter == null ? true : Parameters.Empty) &&
+                       return Parameters.Empty &&
                                        (Initializer is ConstructorBaseInitializer) &&
                                        (Initializer.Arguments == null);
                }
@@ -4293,7 +4371,7 @@ namespace Mono.CSharp {
                        }
 
                        if ((RootContext.WarningLevel >= 4) && ((Parent.ModFlags & Modifiers.SEALED) != 0 && (ModFlags & Modifiers.PROTECTED) != 0)) {
-                               Report.Warning (628, Location, "`{0}': new protected member declared in sealed class", GetSignatureForError ());
+                               Report.Warning (628, 4, Location, "`{0}': new protected member declared in sealed class", GetSignatureForError ());
                        }
                        
                        return true;
@@ -4343,14 +4421,18 @@ namespace Mono.CSharp {
 
                        if ((ModFlags & Modifiers.UNSAFE) != 0)
                                ConstructorBuilder.InitLocals = false;
+
+                       if (Parent.IsComImport) {
+                               if (!IsDefault ()) {
+                                       Report.Error (669, Location, "`{0}': A class with the ComImport attribute cannot have a user-defined constructor",
+                                               Parent.GetSignatureForError ());
+                                       return false;
+                               }
+                               ConstructorBuilder.SetImplementationFlags (MethodImplAttributes.InternalCall);
+                       }
                        
                        TypeManager.AddMethod (ConstructorBuilder, this);
 
-                       //
-                       // HACK because System.Reflection.Emit is lame
-                       //
-                       TypeManager.RegisterMethod (ConstructorBuilder, ParameterInfo, ParameterTypes);
-
                        return true;
                }
 
@@ -4360,6 +4442,8 @@ namespace Mono.CSharp {
                public override void Emit ()
                {
                        EmitContext ec = CreateEmitContext (null, null);
+                       if (GetObsoleteAttribute () != null || Parent.GetObsoleteAttribute () != null)
+                               ec.TestObsoleteMethodUsage = false;
 
                        // If this is a non-static `struct' constructor and doesn't have any
                        // initializer, it must initialize all of the struct's fields.
@@ -4367,13 +4451,14 @@ namespace Mono.CSharp {
                            ((ModFlags & Modifiers.STATIC) == 0) && (Initializer == null))
                                Block.AddThisVariable (Parent, Location);
 
-                       if (block != null)
-                               block.ResolveMeta (ec, ParameterInfo);
+                       if (block != null) {
+                               if (!block.ResolveMeta (ec, ParameterInfo))
+                                       block = null;
+                       }
 
                        if ((ModFlags & Modifiers.STATIC) == 0){
                                if (Parent.Kind == Kind.Class && Initializer == null)
-                                       Initializer = new ConstructorBaseInitializer (
-                                               null, Parameters.EmptyReadOnlyParameters, Location);
+                                       Initializer = new GeneratedBaseInitializer (Location);
 
 
                                //
@@ -4387,7 +4472,7 @@ namespace Mono.CSharp {
                                ec.IsStatic = false;
                        }
 
-                       Parameters.LabelParameters (ec, ConstructorBuilder);
+                       Parameters.ApplyAttributes (ec, ConstructorBuilder);
                        
                        SourceMethod source = SourceMethod.Create (
                                Parent, ConstructorBuilder, block);
@@ -4407,9 +4492,6 @@ namespace Mono.CSharp {
                                }
                        }
                        if (Initializer != null) {
-                               if (GetObsoleteAttribute () != null || Parent.GetObsoleteAttribute (Parent) != null)
-                                       ec.TestObsoleteMethodUsage = false;
-
                                Initializer.Emit (ec);
                        }
                        
@@ -4419,7 +4501,7 @@ namespace Mono.CSharp {
                        if (OptAttributes != null) 
                                OptAttributes.Emit (ec, this);
 
-                       ec.EmitTopBlock (this, block, ParameterInfo);
+                       ec.EmitTopBlock (this, block);
 
                        if (source != null)
                                source.CloseMethod ();
@@ -4452,13 +4534,13 @@ namespace Mono.CSharp {
                                return false;
                        }
                        
-                       if (parameter_types.Length > 0) {
+                       if (ParameterInfo.Count > 0) {
                                ArrayList al = (ArrayList)ds.MemberCache.Members [".ctor"];
                                if (al.Count > 3)
                                        ds.MemberCache.VerifyClsParameterConflict (al, this, ConstructorBuilder);
  
                                if (ds.TypeBuilder.IsSubclassOf (TypeManager.attribute_type)) {
-                                       foreach (Type param in parameter_types) {
+                                       foreach (Type param in ParameterTypes) {
                                                if (param.IsArray) {
                                                        return true;
                                                }
@@ -4473,7 +4555,7 @@ namespace Mono.CSharp {
 
                public System.Reflection.CallingConventions CallingConventions {
                        get {
-                               CallingConventions cc = Parameters.GetCallingConvention ();
+                               CallingConventions cc = Parameters.CallingConvention;
 
                                if (Parent.Kind == Kind.Class)
                                        if ((ModFlags & Modifiers.STATIC) == 0)
@@ -4509,11 +4591,6 @@ namespace Mono.CSharp {
                        return new EmitContext (Parent, Location, ig_, null, ModFlags, true);
                }
 
-               public ObsoleteAttribute GetObsoleteAttribute ()
-               {
-                       return GetObsoleteAttribute (Parent);
-               }
-
                public bool IsExcluded(EmitContext ec)
                {
                        return false;
@@ -4530,8 +4607,8 @@ namespace Mono.CSharp {
                CallingConventions CallingConventions { get; }
                Location Location { get; }
                MemberName MethodName { get; }
-               Type[] ParameterTypes { get; }
                Type ReturnType { get; }
+               Parameters ParameterInfo { get; }
 
                Attributes OptAttributes { get; }
                ToplevelBlock Block { get; set; }
@@ -4540,7 +4617,7 @@ namespace Mono.CSharp {
                ObsoleteAttribute GetObsoleteAttribute ();
                string GetSignatureForError ();
                bool IsExcluded (EmitContext ec);
-               bool IsClsCompliaceRequired (DeclSpace ds);
+               bool IsClsComplianceRequired (DeclSpace ds);
                void SetMemberIsUsed ();
        }
 
@@ -4551,11 +4628,6 @@ namespace Mono.CSharp {
 
                readonly IMethodData method;
 
-               //
-               // The return type of this method
-               //
-               public readonly InternalParameters ParameterInfo;
-
                //
                // Are we implementing an interface ?
                //
@@ -4575,11 +4647,10 @@ namespace Mono.CSharp {
                        }
                }
 
-               public MethodData (MemberBase member, InternalParameters parameters,
+               public MethodData (MemberBase member,
                                   int modifiers, MethodAttributes flags, IMethodData method)
                {
                        this.member = member;
-                       this.ParameterInfo = parameters;
                        this.modifiers = modifiers;
                        this.flags = flags;
 
@@ -4591,15 +4662,13 @@ namespace Mono.CSharp {
                        string name = method.MethodName.Name;
                        string method_name = name;
 
-                       Type[] ParameterTypes = method.ParameterTypes;
-
                        if (container.Pending != null){
                                if (member is Indexer) // TODO: test it, but it should work without this IF
                                        implementing = container.Pending.IsInterfaceIndexer (
-                                               member.InterfaceType, method.ReturnType, ParameterInfo);
+                                               member.InterfaceType, method.ReturnType, method.ParameterInfo);
                                else
                                        implementing = container.Pending.IsInterfaceMethod (
-                                               member.InterfaceType, name, method.ReturnType, ParameterInfo);
+                                               member.InterfaceType, name, method.ReturnType, method.ParameterInfo);
 
                                if (member.InterfaceType != null){
                                        if (implementing == null){
@@ -4615,7 +4684,7 @@ namespace Mono.CSharp {
                                                }
                                                return false;
                                        }
-                                       if (implementing.IsSpecialName && !((member is PropertyBase || member is EventProperty))) {
+                                       if (implementing.IsSpecialName && !(method is AbstractPropertyEventMethod)) {
                                                Report.SymbolRelatedToPreviousError (implementing);
                                                Report.Error (683, method.Location, "`{0}' explicit method implementation cannot implement `{1}' because it is an accessor",
                                                        member.GetSignatureForError (), TypeManager.CSharpSignature (implementing));
@@ -4623,11 +4692,23 @@ namespace Mono.CSharp {
                                        }
                                        method_name = member.InterfaceType.FullName + "." + name;
                                } else {
-                                       if (implementing != null && method is AbstractPropertyEventMethod && !implementing.IsSpecialName) {
-                                               Report.SymbolRelatedToPreviousError (implementing);
-                                               Report.Error (686, method.Location, "Accessor `{0}' cannot implement interface member `{1}' for type `{2}'. Use an explicit interface implementation",
-                                                       method.GetSignatureForError (), TypeManager.CSharpSignature (implementing), container.GetSignatureForError ());
-                                               return false;
+                                       if (implementing != null) {
+                                               AbstractPropertyEventMethod prop_method = method as AbstractPropertyEventMethod;
+                                               if (prop_method != null) {
+                                                       if (!implementing.IsSpecialName) {
+                                                               Report.SymbolRelatedToPreviousError (implementing);
+                                                               Report.Error (686, method.Location, "Accessor `{0}' cannot implement interface member `{1}' for type `{2}'. Use an explicit interface implementation",
+                                                                       method.GetSignatureForError (), TypeManager.CSharpSignature (implementing), container.GetSignatureForError ());
+                                                               return false;
+                                                       }
+                                                       PropertyBase.PropertyMethod pm = prop_method as PropertyBase.PropertyMethod;
+                                                       if (pm != null && pm.HasCustomAccessModifier && (pm.ModFlags & Modifiers.PUBLIC) == 0) {
+                                                               Report.SymbolRelatedToPreviousError (implementing);
+                                                               Report.Error (277, method.Location, "Accessor `{0}' must be declared public to implement interface member `{1}'",
+                                                                       method.GetSignatureForError (), TypeManager.CSharpSignature (implementing, true));
+                                                               return false;
+                                                       }
+                                               }
                                        }
                                }
                        }
@@ -4672,7 +4753,6 @@ namespace Mono.CSharp {
                                //
                                if ((modifiers & Modifiers.STATIC) != 0){
                                        implementing = null;
-                                       Modifiers.Error_InvalidModifier (method.Location, "static");
                                }
                        }
                        
@@ -4698,8 +4778,10 @@ namespace Mono.CSharp {
                        }
 
                        EmitContext ec = method.CreateEmitContext (container, null);
+                       if (method.GetObsoleteAttribute () != null || container.GetObsoleteAttribute () != null)
+                               ec.TestObsoleteMethodUsage = false;
 
-                       DefineMethodBuilder (ec, container, method_name, ParameterTypes);
+                       DefineMethodBuilder (ec, container, method_name, method.ParameterInfo.Types);
 
                        if (builder == null)
                                return false;
@@ -4714,11 +4796,11 @@ namespace Mono.CSharp {
                                if (member is Indexer) {
                                        container.Pending.ImplementIndexer (
                                                member.InterfaceType, builder, method.ReturnType,
-                                               ParameterInfo, member.IsExplicitImpl);
+                                               method.ParameterInfo, member.IsExplicitImpl);
                                } else
                                        container.Pending.ImplementMethod (
                                                member.InterfaceType, name, method.ReturnType,
-                                               ParameterInfo, member.IsExplicitImpl);
+                                               method.ParameterInfo, member.IsExplicitImpl);
 
                                if (member.IsExplicitImpl)
                                        container.TypeBuilder.DefineMethodOverride (
@@ -4726,7 +4808,6 @@ namespace Mono.CSharp {
 
                        }
 
-                       TypeManager.RegisterMethod (builder, ParameterInfo, ParameterTypes);
                        TypeManager.AddMethod (builder, method);
 
                        return true;
@@ -4780,17 +4861,16 @@ namespace Mono.CSharp {
                        else
                                ec = method.CreateEmitContext (container, null);
 
-                       if (method.GetObsoleteAttribute () != null || container.GetObsoleteAttribute (container) != null)
+                       if (method.GetObsoleteAttribute () != null || container.GetObsoleteAttribute () != null)
                                ec.TestObsoleteMethodUsage = false;
 
+                       method.ParameterInfo.ApplyAttributes (ec, MethodBuilder);
+
                        Attributes OptAttributes = method.OptAttributes;
 
                        if (OptAttributes != null)
                                OptAttributes.Emit (ec, kind);
 
-                       if (member is MethodCore)
-                               ((MethodCore) member).Parameters.LabelParameters (ec, MethodBuilder);
-
                        ToplevelBlock block = method.Block;
                        
                        SourceMethod source = SourceMethod.Create (
@@ -4804,7 +4884,7 @@ namespace Mono.CSharp {
                        if (member is Destructor)
                                EmitDestructor (ec, block);
                        else
-                               ec.EmitTopBlock (method, block, ParameterInfo);
+                               ec.EmitTopBlock (method, block);
 
                        if (source != null)
                                source.CloseMethod ();
@@ -4821,7 +4901,7 @@ namespace Mono.CSharp {
                        ig.BeginExceptionBlock ();
                        ec.ReturnLabel = finish;
                        ec.HasReturnLabel = true;
-                       ec.EmitTopBlock (method, block, null);
+                       ec.EmitTopBlock (method, block);
                        
                        // ig.MarkLabel (finish);
                        ig.BeginFinallyBlock ();
@@ -4851,8 +4931,8 @@ namespace Mono.CSharp {
                public Destructor (TypeContainer ds, Expression return_type, int mod,
                                   string name, Parameters parameters, Attributes attrs,
                                   Location l)
-                       : base (ds, return_type, mod, false, new MemberName (name),
-                               parameters, attrs, l)
+                       : base (ds, return_type, mod, false, new MemberName (name, l),
+                               parameters, attrs)
                { }
 
                public override void ApplyAttributeBuilder(Attribute a, CustomAttributeBuilder cb)
@@ -4886,9 +4966,11 @@ namespace Mono.CSharp {
                //
                public string ShortName {
                        get { return MemberName.Name; }
-                       set {
-                               SetMemberName (new MemberName (MemberName.Left, value));
-                       }
+                       set { SetMemberName (new MemberName (MemberName.Left, value, Location)); }
+               }
+
+               public new TypeContainer Parent {
+                       get { return (TypeContainer) base.Parent; }
                }
 
                //
@@ -4903,8 +4985,9 @@ namespace Mono.CSharp {
                                        ec.InUnsafe = InUnsafe;
                                        Type = Type.ResolveAsTypeTerminal (ec, false);
                                        ec.InUnsafe = old_unsafe;
-
-                                       member_type = Type == null ? null : Type.Type;
+                                       if (Type != null) {
+                                               member_type = Type.Type;
+                                       }
                                }
                                return member_type;
                        }
@@ -4930,12 +5013,12 @@ namespace Mono.CSharp {
                //
                protected MemberBase (TypeContainer parent, Expression type, int mod,
                                      int allowed_mod, int def_mod, MemberName name,
-                                     Attributes attrs, Location loc)
-                       : base (parent, name, attrs, loc)
+                                     Attributes attrs)
+                       : base (parent, name, attrs)
                {
                        explicit_mod_flags = mod;
                        Type = type;
-                       ModFlags = Modifiers.Check (allowed_mod, mod, def_mod, loc);
+                       ModFlags = Modifiers.Check (allowed_mod, mod, def_mod, Location);
                        IsExplicitImpl = (MemberName.Left != null);
                }
 
@@ -4950,53 +5033,11 @@ namespace Mono.CSharp {
                            ((Parent.ModFlags & Modifiers.SEALED) != 0) &&
                            ((ModFlags & Modifiers.PROTECTED) != 0) &&
                            ((ModFlags & Modifiers.OVERRIDE) == 0) && (Name != "Finalize")) {
-                               Report.Warning (628, Location, "`{0}': new protected member declared in sealed class", GetSignatureForError ());
+                               Report.Warning (628, 4, Location, "`{0}': new protected member declared in sealed class", GetSignatureForError ());
                        }
                        return true;
-               }
-
-               protected virtual bool CheckParameters (DeclSpace ds, Type [] parameters)
-               {
-                       bool error = false;
-
-                       foreach (Type partype in parameters){
-                               if (partype == TypeManager.void_type) {
-                                       Report.Error (
-                                               1547, Location, "Keyword 'void' cannot " +
-                                               "be used in this context");
-                                       return false;
-                               }
-
-                               if (partype.IsPointer){
-                                       if (!UnsafeOK (ds))
-                                               error = true;
-                                       if (!TypeManager.VerifyUnManaged (TypeManager.GetElementType (partype), Location))
-                                               error = true;
-                               }
-
-                               if (ds.AsAccessible (partype, ModFlags))
-                                       continue;
-
-                               if (this is Indexer)
-                                       Report.Error (55, Location,
-                                                     "Inconsistent accessibility: parameter type `" +
-                                                     TypeManager.CSharpName (partype) + "' is less " +
-                                                     "accessible than indexer `" + GetSignatureForError () + "'");
-                               else if ((this is Method) && ((Method) this).IsOperator != null)
-                                       Report.Error (57, Location,
-                                                     "Inconsistent accessibility: parameter type `" +
-                                                     TypeManager.CSharpName (partype) + "' is less " +
-                                                     "accessible than operator `" + GetSignatureForError () + "'");
-                               else
-                                       Report.Error (51, Location,
-                                                     "Inconsistent accessibility: parameter type `" +
-                                                     TypeManager.CSharpName (partype) + "' is less " +
-                                                     "accessible than method `" + GetSignatureForError () + "'");
-                               error = true;
-                       }
+       }
 
-                       return !error;
-               }
 
                protected virtual bool DoDefine ()
                {
@@ -5027,6 +5068,8 @@ namespace Mono.CSharp {
                        if (MemberType == null)
                                return false;
 
+                       CheckObsoleteType (Type);
+
                        if ((Parent.ModFlags & Modifiers.SEALED) != 0 && 
                                (ModFlags & (Modifiers.VIRTUAL|Modifiers.ABSTRACT)) != 0) {
                                        Report.Error (549, Location, "New virtual member `{0}' is declared in a sealed class `{1}'",
@@ -5071,7 +5114,7 @@ namespace Mono.CSharp {
                                return false;
 
                        if (IsExplicitImpl) {
-                               Expression expr = MemberName.Left.GetTypeExpression (Location);
+                               Expression expr = MemberName.Left.GetTypeExpression ();
                                TypeExpr texpr = expr.ResolveAsTypeTerminal (ec, false);
                                if (texpr == null)
                                        return false;
@@ -5107,16 +5150,12 @@ namespace Mono.CSharp {
                                return true;
                        }
 
-                       if (IsInterface && HasClsCompliantAttribute && ds.IsClsCompliaceRequired (ds)) {
+                       if (IsInterface && HasClsCompliantAttribute && ds.IsClsComplianceRequired (ds)) {
                                Report.Error (3010, Location, "`{0}': CLS-compliant interfaces must have only CLS-compliant members", GetSignatureForError ());
                        }
                        return false;
                }
 
-               protected override void VerifyObsoleteAttribute()
-               {
-                       CheckUsageOfObsoleteAttribute (MemberType);
-               }
        }
 
        //
@@ -5126,6 +5165,7 @@ namespace Mono.CSharp {
        abstract public class FieldBase : MemberBase {
                public FieldBuilder  FieldBuilder;
                public Status status;
+               protected Expression initializer;
 
                [Flags]
                public enum Status : byte {
@@ -5139,16 +5179,11 @@ namespace Mono.CSharp {
                /// </summary>
                public MemberInfo conflict_symbol;
 
-               //
-               // The constructor is only exposed to our children
-               //
                protected FieldBase (TypeContainer parent, Expression type, int mod,
-                                    int allowed_mod, MemberName name, object init,
-                                    Attributes attrs, Location loc)
+                                    int allowed_mod, MemberName name, Attributes attrs)
                        : base (parent, type, mod, allowed_mod, Modifiers.PRIVATE,
-                               name, attrs, loc)
+                               name, attrs)
                {
-                       this.init = init;
                }
 
                public override AttributeTargets AttributeTargets {
@@ -5175,52 +5210,43 @@ namespace Mono.CSharp {
                        FieldBuilder.SetCustomAttribute (cb);
                }
 
-               //
-               // Whether this field has an initializer.
-               //
-               public bool HasInitializer {
-                       get {
-                               return init != null;
-                       }
-               }
+               public void EmitInitializer (EmitContext ec)
+               {
+                       // Replace DeclSpace because of partial classes
+                       ec.DeclSpace = EmitContext.DeclSpace;
 
-               protected readonly Object init;
+                       ec.IsFieldInitializer = true;
+                       initializer = initializer.Resolve (ec);
+                       ec.IsFieldInitializer = false;
+                       if (initializer == null)
+                               return;
 
-               // Private.
-               Expression init_expr;
-               bool init_expr_initialized = false;
+                       FieldExpr fe = new FieldExpr (FieldBuilder, Location, true);
+                       if ((ModFlags & Modifiers.STATIC) == 0)
+                               fe.InstanceExpression = new This (Location).Resolve (ec);
 
-               //
-               // Resolves and returns the field initializer.
-               //
-               public Expression GetInitializerExpression (EmitContext ec)
-               {
-                       if (init_expr_initialized)
-                               return init_expr;
+                       ExpressionStatement a = new Assign (fe, initializer, Location);
 
-                       Expression e;
-                       if (init is Expression)
-                               e = (Expression) init;
-                       else
-                               e = new ArrayCreation (Type, "", (ArrayList)init, Location);
+                       a = a.ResolveStatement (ec);
+                       if (a == null)
+                               return;
+
+                       Constant c = initializer as Constant;
+                       if (c != null && CanElideInitializer (c))
+                               return;
 
-                       // TODO: Any reason why we are using parent EC ?
-                       EmitContext parent_ec = Parent.EmitContext;
+                       a.EmitStatement (ec);
+               }
 
-                       bool old_is_static = parent_ec.IsStatic;
-                       bool old_is_ctor = parent_ec.IsConstructor;
-                       parent_ec.IsStatic = ec.IsStatic;
-                       parent_ec.IsConstructor = ec.IsConstructor;
-                       parent_ec.IsFieldInitializer = true;
-                       e = e.DoResolve (parent_ec);
-                       parent_ec.IsFieldInitializer = false;
-                       parent_ec.IsStatic = old_is_static;
-                       parent_ec.IsConstructor = old_is_ctor;
+               bool CanElideInitializer (Constant c)
+               {
+                       if (MemberType == c.Type)
+                               return c.IsDefaultValue;
 
-                       init_expr = e;
-                       init_expr_initialized = true;
+                       if (c.Type == TypeManager.null_type)
+                               return true;
 
-                       return init_expr;
+                       return false;
                }
 
                protected override bool CheckBase ()
@@ -5235,20 +5261,29 @@ namespace Mono.CSharp {
                        conflict_symbol = Parent.FindBaseMemberWithSameName (Name, false);
                        if (conflict_symbol == null) {
                                if ((RootContext.WarningLevel >= 4) && ((ModFlags & Modifiers.NEW) != 0)) {
-                                       Report.Warning (109, Location, "The member `{0}' does not hide an inherited member. The new keyword is not required", GetSignatureForError ());
+                                       Report.Warning (109, 4, Location, "The member `{0}' does not hide an inherited member. The new keyword is not required", GetSignatureForError ());
                                }
                                return true;
                        }
  
                        if ((ModFlags & (Modifiers.NEW | Modifiers.OVERRIDE)) == 0) {
                                Report.SymbolRelatedToPreviousError (conflict_symbol);
-                               Report.Warning (108, Location, "`{0}' hides inherited member `{1}'. Use the new keyword if hiding was intended",
+                               Report.Warning (108, 2, Location, "`{0}' hides inherited member `{1}'. Use the new keyword if hiding was intended",
                                        GetSignatureForError (), TypeManager.GetFullNameSignature (conflict_symbol));
                        }
  
                        return true;
                }
 
+               public Expression Initializer {
+                       set {
+                               if (value != null) {
+                                       this.initializer = value;
+                                       Parent.RegisterFieldForInitialization (this);
+                               }
+                       }
+               }
+
                protected virtual bool IsFieldClsCompliant {
                        get {
                                if (FieldBuilder == null)
@@ -5282,14 +5317,14 @@ namespace Mono.CSharp {
                }
        }
 
-       public abstract class FieldMember: FieldBase
+       public abstract class FieldMember : FieldBase
        {
                protected FieldMember (TypeContainer parent, Expression type, int mod,
-                       int allowed_mod, MemberName name, object init, Attributes attrs, Location loc)
-                       : base (parent, type, mod, allowed_mod | Modifiers.ABSTRACT, name, init, attrs, loc)
+                       int allowed_mod, MemberName name, Attributes attrs)
+                       : base (parent, type, mod, allowed_mod | Modifiers.ABSTRACT, name, attrs)
                {
                        if ((mod & Modifiers.ABSTRACT) != 0)
-                               Report.Error (681, loc, "The modifier 'abstract' is not valid on fields. Try using a property instead");
+                               Report.Error (681, Location, "The modifier 'abstract' is not valid on fields. Try using a property instead");
                }
 
                public override void ApplyAttributeBuilder(Attribute a, CustomAttributeBuilder cb)
@@ -5326,9 +5361,11 @@ namespace Mono.CSharp {
                        if (ec == null)
                                throw new InternalErrorException ("FieldMember.Define called too early");
 
-                       if (MemberType == null)
+                       if (MemberType == null || Type == null)
                                return false;
 
+                       CheckObsoleteType (Type);
+
                        if (MemberType == TypeManager.void_type) {
                                Report.Error (1547, Location, "Keyword 'void' cannot be used in this context");
                                return false;
@@ -5411,7 +5448,7 @@ namespace Mono.CSharp {
        /// <summary>
        /// Fixed buffer implementation
        /// </summary>
-       public class FixedField: FieldMember, IFixedBuffer
+       public class FixedField : FieldMember, IFixedBuffer
        {
                public const string FixedElementName = "FixedElementField";
                static int GlobalCounter = 0;
@@ -5432,7 +5469,7 @@ namespace Mono.CSharp {
 
                public FixedField (TypeContainer parent, Expression type, int mod, string name,
                        Expression size_expr, Attributes attrs, Location loc):
-                       base (parent, type, mod, AllowedModifiers, new MemberName (name), null, attrs, loc)
+                       base (parent, type, mod, AllowedModifiers, new MemberName (name, loc), attrs)
                {
                        if (RootContext.Version == LanguageVersion.ISO_1)
                                Report.FeatureIsNotStandardized (loc, "fixed size buffers");
@@ -5444,7 +5481,7 @@ namespace Mono.CSharp {
                {
 #if !NET_2_0
                        if ((ModFlags & (Modifiers.PUBLIC | Modifiers.PROTECTED)) != 0)
-                               Report.Warning (-23, Location, "Only private or internal fixed sized buffers are supported by .NET 1.x");
+                               Report.Warning (-23, 1, Location, "Only private or internal fixed sized buffers are supported by .NET 1.x");
 #endif
 
                        if (Parent.Kind != Kind.Struct) {
@@ -5462,16 +5499,10 @@ namespace Mono.CSharp {
                                return false;
                        }
 
-                       Expression e = size_expr.Resolve (Parent.EmitContext);
-                       if (e == null)
+                       Constant c = size_expr.ResolveAsConstant (Parent.EmitContext, this);
+                       if (c == null)
                                return false;
 
-                       Constant c = e as Constant;
-                       if (c == null) {
-                               Const.Error_ExpressionMustBeConstant (e.Location, GetSignatureForError ());
-                               return false;
-                       }
-
                        IntConstant buffer_size_const = c.ToInt (Location);
                        if (buffer_size_const == null)
                                return false;
@@ -5568,9 +5599,9 @@ namespace Mono.CSharp {
                        Modifiers.READONLY;
 
                public Field (TypeContainer parent, Expression type, int mod, string name,
-                             Object expr_or_array_init, Attributes attrs, Location loc)
-                       : base (parent, type, mod, AllowedModifiers, new MemberName (name),
-                               expr_or_array_init, attrs, loc)
+                             Attributes attrs, Location loc)
+                       : base (parent, type, mod, AllowedModifiers, new MemberName (name, loc),
+                               attrs)
                {
                }
 
@@ -5640,7 +5671,7 @@ namespace Mono.CSharp {
                                TypeManager.RegisterFieldBase (FieldBuilder, this);
                        }
                        catch (ArgumentException) {
-                               Report.Warning (-24, Location, "The Microsoft runtime is unable to use [void|void*] as a field type, try using the Mono runtime.");
+                               Report.Warning (-24, 1, Location, "The Microsoft runtime is unable to use [void|void*] as a field type, try using the Mono runtime.");
                                return false;
                        }
 
@@ -5695,7 +5726,7 @@ namespace Mono.CSharp {
 
        // Ooouh Martin, templates are missing here.
        // When it will be possible move here a lot of child code and template method type.
-       public abstract class AbstractPropertyEventMethod: MemberCore, IMethodData {
+       public abstract class AbstractPropertyEventMethod : MemberCore, IMethodData {
                protected MethodData method_data;
                protected ToplevelBlock block;
                protected ListDictionary declarative_security;
@@ -5710,7 +5741,7 @@ namespace Mono.CSharp {
                ReturnParameter return_attributes;
 
                public AbstractPropertyEventMethod (MemberBase member, string prefix)
-                       : base (null, SetupName (prefix, member), null, member.Location)
+                       : base (member.Parent, SetupName (prefix, member, member.Location), null)
                {
                        this.prefix = prefix;
                        IsDummy = true;
@@ -5718,21 +5749,21 @@ namespace Mono.CSharp {
 
                public AbstractPropertyEventMethod (MemberBase member, Accessor accessor,
                                                    string prefix)
-                       : base (null, SetupName (prefix, member),
-                               accessor.Attributes, accessor.Location)
+                       : base (member.Parent, SetupName (prefix, member, accessor.Location),
+                               accessor.Attributes)
                {
                        this.prefix = prefix;
                        this.block = accessor.Block;
                }
 
-               static MemberName SetupName (string prefix, MemberBase member)
+               static MemberName SetupName (string prefix, MemberBase member, Location loc)
                {
-                       return new MemberName (member.MemberName.Left, prefix + member.ShortName);
+                       return new MemberName (member.MemberName.Left, prefix + member.ShortName, loc);
                }
 
                public void UpdateName (MemberBase member)
                {
-                       SetMemberName (SetupName (prefix, member));
+                       SetMemberName (SetupName (prefix, member, Location));
                }
 
                #region IMethodData Members
@@ -5764,8 +5795,13 @@ namespace Mono.CSharp {
                        }
                }
 
-               public abstract ObsoleteAttribute GetObsoleteAttribute ();
-               public abstract Type[] ParameterTypes { get; }
+               public Type[] ParameterTypes { 
+                       get {
+                               return ParameterInfo.Types;
+                       }
+               }
+
+               public abstract Parameters ParameterInfo { get ; }
                public abstract Type ReturnType { get; }
                public abstract EmitContext CreateEmitContext(TypeContainer tc, ILGenerator ig);
 
@@ -5832,14 +5868,14 @@ namespace Mono.CSharp {
                        method_data.Emit (container, this);
                }
 
-               public override bool IsClsCompliaceRequired(DeclSpace ds)
+               public override bool IsClsComplianceRequired(DeclSpace ds)
                {
                        return false;
                }
 
                public bool IsDuplicateImplementation (MethodCore method)
                {
-                       if (Name != method.Name)
+                       if (!MemberName.Equals (method.MemberName))
                                return false;
 
                        Type[] param_types = method.ParameterTypes;
@@ -5879,10 +5915,6 @@ namespace Mono.CSharp {
                        get { throw new InvalidOperationException ("Unexpected attempt to get doc comment from " + this.GetType () + "."); }
                }
 
-               protected override void VerifyObsoleteAttribute()
-               {
-               }
-
        }
 
        //
@@ -5891,7 +5923,7 @@ namespace Mono.CSharp {
        //
        abstract public class PropertyBase : MethodCore {
 
-               public class GetMethod: PropertyMethod
+               public class GetMethod : PropertyMethod
                {
                        static string[] attribute_targets = new string [] { "method", "return" };
 
@@ -5909,7 +5941,7 @@ namespace Mono.CSharp {
                        {
                                base.Define (container);
                                
-                               method_data = new MethodData (method, method.ParameterInfo, ModFlags, flags, this);
+                               method_data = new MethodData (method, ModFlags, flags, this);
 
                                if (!method_data.Define (container))
                                        return null;
@@ -5923,6 +5955,12 @@ namespace Mono.CSharp {
                                }
                        }
 
+                       public override Parameters ParameterInfo {
+                               get {
+                                       return Parameters.EmptyReadOnlyParameters;
+                               }
+                       }
+
                        public override string[] ValidAttributeTargets {
                                get {
                                        return attribute_targets;
@@ -5930,10 +5968,11 @@ namespace Mono.CSharp {
                        }
                }
 
-               public class SetMethod: PropertyMethod {
+               public class SetMethod : PropertyMethod {
 
                        static string[] attribute_targets = new string [] { "method", "param", "return" };
                        ImplicitParameter param_attr;
+                       protected Parameters parameters;
 
                        public SetMethod (MethodCore method):
                                base (method, "set_")
@@ -5958,28 +5997,32 @@ namespace Mono.CSharp {
                                base.ApplyAttributeBuilder (a, cb);
                        }
 
-                       protected virtual InternalParameters GetParameterInfo (EmitContext ec)
+                       public override Parameters ParameterInfo {
+                               get {
+                                       return parameters;
+                               }
+                       }
+
+                       protected virtual void DefineParameters ()
                        {
                                Parameter [] parms = new Parameter [1];
-                               parms [0] = new Parameter (method.Type, "value", Parameter.Modifier.NONE, null, method.Location);
-                               Parameters parameters = new Parameters (parms, null);
-
-                               bool old_unsafe = ec.InUnsafe;
-                               ec.InUnsafe = InUnsafe;
-                               Type [] types = parameters.GetParameterInfo (ec);
-                               ec.InUnsafe = old_unsafe;
-
-                               return new InternalParameters (types, parameters);
+                               parms [0] = new Parameter (method.MemberType, "value", Parameter.Modifier.NONE, null, Location);
+                               parameters = new Parameters (parms);
+                               parameters.Resolve (null);
                        }
 
                        public override MethodBuilder Define (TypeContainer container)
                        {
                                if (container.EmitContext == null)
                                        throw new InternalErrorException ("SetMethod.Define called too early");
-                                       
+
+                               DefineParameters ();
+                               if (IsDummy)
+                                       return null;
+
                                base.Define (container);
-                               
-                               method_data = new MethodData (method, GetParameterInfo (container.EmitContext), ModFlags, flags, this);
+
+                               method_data = new MethodData (method, ModFlags, flags, this);
 
                                if (!method_data.Define (container))
                                        return null;
@@ -5987,12 +6030,6 @@ namespace Mono.CSharp {
                                return method_data.MethodBuilder;
                        }
 
-                       public override Type[] ParameterTypes {
-                               get {
-                                       return new Type[] { method.MemberType };
-                               }
-                       }
-
                        public override Type ReturnType {
                                get {
                                        return TypeManager.void_type;
@@ -6008,7 +6045,7 @@ namespace Mono.CSharp {
 
                static string[] attribute_targets = new string [] { "property" };
 
-               public abstract class PropertyMethod: AbstractPropertyEventMethod
+               public abstract class PropertyMethod : AbstractPropertyEventMethod
                {
                        protected readonly MethodCore method;
                        protected MethodAttributes flags;
@@ -6018,7 +6055,6 @@ namespace Mono.CSharp {
                                : base (method, prefix)
                        {
                                this.method = method;
-                               Parent = method.Parent;
                        }
 
                        public PropertyMethod (MethodCore method, Accessor accessor,
@@ -6026,7 +6062,6 @@ namespace Mono.CSharp {
                                : base (method, accessor, prefix)
                        {
                                this.method = method;
-                               Parent = method.Parent;
                                this.ModFlags = accessor.ModFlags;
                                yields = accessor.Yields;
 
@@ -6041,16 +6076,9 @@ namespace Mono.CSharp {
                                }
                        }
 
-                       public override bool IsClsCompliaceRequired(DeclSpace ds)
+                       public override bool IsClsComplianceRequired(DeclSpace ds)
                        {
-                               return method.IsClsCompliaceRequired (ds);
-                       }
-
-                       public InternalParameters ParameterInfo 
-                       {
-                               get {
-                                       return method_data.ParameterInfo;
-                               }
+                               return method.IsClsComplianceRequired (ds);
                        }
 
                        public virtual MethodBuilder Define (TypeContainer container)
@@ -6084,8 +6112,7 @@ namespace Mono.CSharp {
                                // Setup iterator if we are one
                                //
                                if (yields) {
-                                       Iterator iterator = new Iterator (this,
-                                               Parent, method.ParameterInfo, ModFlags);
+                                       Iterator iterator = new Iterator (this, Parent as TypeContainer, ModFlags);
                                        
                                        if (!iterator.DefineIterator ())
                                                return null;
@@ -6101,12 +6128,6 @@ namespace Mono.CSharp {
                                }
                        }
 
-                       public override Type[] ParameterTypes {
-                               get {
-                                       return TypeManager.NoTypes;
-                               }
-                       }
-
                        public override EmitContext CreateEmitContext (TypeContainer tc,
                                                                       ILGenerator ig)
                        {
@@ -6117,7 +6138,7 @@ namespace Mono.CSharp {
 
                        public override ObsoleteAttribute GetObsoleteAttribute ()
                        {
-                               return method.GetObsoleteAttribute (method.Parent);
+                               return method.GetObsoleteAttribute ();
                        }
 
                        public override string GetSignatureForError()
@@ -6165,10 +6186,9 @@ namespace Mono.CSharp {
 
                public PropertyBase (TypeContainer ds, Expression type, int mod_flags,
                                     int allowed_mod, bool is_iface, MemberName name,
-                                    Parameters parameters, Attributes attrs,
-                                    Location loc)
+                                    Parameters parameters, Attributes attrs)
                        : base (ds, type, mod_flags, allowed_mod, is_iface, name,
-                               attrs, parameters, loc)
+                               attrs, parameters)
                {
                }
 
@@ -6393,11 +6413,10 @@ namespace Mono.CSharp {
 
                public Property (TypeContainer ds, Expression type, int mod, bool is_iface,
                                 MemberName name, Attributes attrs, Accessor get_block,
-                                Accessor set_block, Location loc)
+                                Accessor set_block)
                        : base (ds, type, mod,
                                is_iface ? AllowedInterfaceModifiers : AllowedModifiers,
-                               is_iface, name, Parameters.EmptyReadOnlyParameters, attrs,
-                               loc)
+                               is_iface, name, Parameters.EmptyReadOnlyParameters, attrs)
                {
                        if (get_block == null)
                                Get = new GetMethod (this);
@@ -6426,12 +6445,10 @@ namespace Mono.CSharp {
                                        return false;
                        }
 
+                       SetBuilder = Set.Define (Parent);
                        if (!Set.IsDummy) {
-                               SetBuilder = Set.Define (Parent);
                                if (SetBuilder == null)
                                        return false;
-
-                               SetBuilder.DefineParameter (1, ParameterAttributes.None, "value"); 
                        }
 
                        // FIXME - PropertyAttributes.HasDefault ?
@@ -6450,7 +6467,6 @@ namespace Mono.CSharp {
                        if (!Set.IsDummy)
                                PropertyBuilder.SetSetMethod (SetBuilder);
                        
-                       TypeManager.RegisterProperty (PropertyBuilder, GetBuilder, SetBuilder);
                        return true;
                }
        }
@@ -6609,10 +6625,9 @@ namespace Mono.CSharp {
                static string[] attribute_targets = new string [] { "event" }; // "property" target was disabled for 2.0 version
 
                public EventProperty (TypeContainer parent, Expression type, int mod_flags,
-                                     bool is_iface, MemberName name, Object init,
-                                     Attributes attrs, Accessor add, Accessor remove,
-                                     Location loc)
-                       : base (parent, type, mod_flags, is_iface, name, init, attrs, loc)
+                                     bool is_iface, MemberName name,
+                                     Attributes attrs, Accessor add, Accessor remove)
+                       : base (parent, type, mod_flags, is_iface, name, attrs)
                {
                        Add = new AddDelegateMethod (this, add);
                        Remove = new RemoveDelegateMethod (this, remove);
@@ -6632,15 +6647,15 @@ namespace Mono.CSharp {
        /// <summary>
        /// Event is declared like field.
        /// </summary>
-       public class EventField: Event {
+       public class EventField : Event {
 
                static string[] attribute_targets = new string [] { "event", "field", "method" };
                static string[] attribute_targets_interface = new string[] { "event", "method" };
 
                public EventField (TypeContainer parent, Expression type, int mod_flags,
-                                  bool is_iface, MemberName name, Object init,
-                                  Attributes attrs, Location loc)
-                       : base (parent, type, mod_flags, is_iface, name, init, attrs, loc)
+                                  bool is_iface, MemberName name,
+                                  Attributes attrs)
+                       : base (parent, type, mod_flags, is_iface, name, attrs)
                {
                        Add = new AddDelegateMethod (this);
                        Remove = new RemoveDelegateMethod (this);
@@ -6662,6 +6677,22 @@ namespace Mono.CSharp {
                        base.ApplyAttributeBuilder (a, cb);
                }
 
+               public override bool Define()
+               {
+                       if (!base.Define ())
+                               return false;
+
+                       if (initializer != null) {
+                               if (((ModFlags & Modifiers.ABSTRACT) != 0)) {
+                                       Report.Error (74, Location, "`{0}': abstract event cannot have an initializer",
+                                               GetSignatureForError ());
+                                       return false;
+                               }
+                       }
+
+                       return true;
+               }
+
                public override string[] ValidAttributeTargets {
                        get {
                                return IsInterface ? attribute_targets_interface : attribute_targets;
@@ -6750,21 +6781,21 @@ namespace Mono.CSharp {
                                }
                        }
 
-                       public override bool IsClsCompliaceRequired(DeclSpace ds)
+                       public override bool IsClsComplianceRequired(DeclSpace ds)
                        {
-                               return method.IsClsCompliaceRequired (ds);
+                               return method.IsClsComplianceRequired (ds);
                        }
 
-                       public MethodBuilder Define (TypeContainer container, InternalParameters ip)
+                       public MethodBuilder Define (TypeContainer container)
                        {
-                               method_data = new MethodData (method, ip, method.ModFlags,
+                               method_data = new MethodData (method, method.ModFlags,
                                        method.flags | MethodAttributes.HideBySig | MethodAttributes.SpecialName, this);
 
                                if (!method_data.Define (container))
                                        return null;
 
                                MethodBuilder mb = method_data.MethodBuilder;
-                               mb.DefineParameter (1, ParameterAttributes.None, "value");
+                               ParameterInfo.ApplyAttributes (Parent.EmitContext, mb);
                                return mb;
                        }
 
@@ -6803,12 +6834,6 @@ namespace Mono.CSharp {
 
                        protected abstract MethodInfo DelegateMethodInfo { get; }
 
-                       public override Type[] ParameterTypes {
-                               get {
-                                       return new Type[] { method.MemberType };
-                               }
-                       }
-
                        public override Type ReturnType {
                                get {
                                        return TypeManager.void_type;
@@ -6825,7 +6850,7 @@ namespace Mono.CSharp {
 
                        public override ObsoleteAttribute GetObsoleteAttribute ()
                        {
-                               return method.GetObsoleteAttribute (method.Parent);
+                               return method.GetObsoleteAttribute ();
                        }
 
                        public override string[] ValidAttributeTargets {
@@ -6833,6 +6858,13 @@ namespace Mono.CSharp {
                                        return attribute_targets;
                                }
                        }
+
+                       public override Parameters ParameterInfo {
+                               get {
+                                       return method.parameters;
+                               }
+                       }
+
                }
 
 
@@ -6855,13 +6887,13 @@ namespace Mono.CSharp {
                public DelegateMethod Add, Remove;
                public MyEventBuilder     EventBuilder;
                public MethodBuilder AddBuilder, RemoveBuilder;
+               Parameters parameters;
 
-               public Event (TypeContainer parent, Expression type, int mod_flags,
-                             bool is_iface, MemberName name, Object init, Attributes attrs,
-                             Location loc)
+               protected Event (TypeContainer parent, Expression type, int mod_flags,
+                             bool is_iface, MemberName name, Attributes attrs)
                        : base (parent, type, mod_flags,
                                is_iface ? AllowedInterfaceModifiers : AllowedModifiers,
-                               name, init, attrs, loc)
+                               name, attrs)
                {
                        IsInterface = is_iface;
                }
@@ -6894,12 +6926,6 @@ namespace Mono.CSharp {
 
                        if (!DoDefine ())
                                return false;
-
-                       if (init != null && ((ModFlags & Modifiers.ABSTRACT) != 0)){
-                               Report.Error (74, Location, "`" + GetSignatureForError () +
-                                             "': abstract event cannot have an initializer");
-                               return false;
-                       }
                        
                        if (!MemberType.IsSubclassOf (TypeManager.delegate_type)) {
                                Report.Error (66, Location, "`{0}': event must be of a delegate type", GetSignatureForError ());
@@ -6913,10 +6939,9 @@ namespace Mono.CSharp {
                        ec.InUnsafe = InUnsafe;
 
                        Parameter [] parms = new Parameter [1];
-                       parms [0] = new Parameter (Type, "value", Parameter.Modifier.NONE, null, Location);
-                       Parameters parameters = new Parameters (parms, null);
-                       Type [] types = parameters.GetParameterInfo (ec);
-                       InternalParameters ip = new InternalParameters (types, parameters);
+                       parms [0] = new Parameter (MemberType, "value", Parameter.Modifier.NONE, null, Location);
+                       parameters = new Parameters (parms);
+                       parameters.Resolve (null);
 
                        ec.InUnsafe = old_unsafe;
 
@@ -6927,11 +6952,11 @@ namespace Mono.CSharp {
                        // Now define the accessors
                        //
 
-                       AddBuilder = Add.Define (Parent, ip);
+                       AddBuilder = Add.Define (Parent);
                        if (AddBuilder == null)
                                return false;
 
-                       RemoveBuilder = Remove.Define (Parent, ip);
+                       RemoveBuilder = Remove.Define (Parent);
                        if (RemoveBuilder == null)
                                return false;
 
@@ -6999,7 +7024,7 @@ namespace Mono.CSharp {
 
        public class Indexer : PropertyBase {
 
-               class GetIndexerMethod: GetMethod
+               class GetIndexerMethod : GetMethod
                {
                        public GetIndexerMethod (MethodCore method):
                                base (method)
@@ -7011,72 +7036,39 @@ namespace Mono.CSharp {
                        {
                        }
 
-                       public override Type[] ParameterTypes {
+                       public override Parameters ParameterInfo {
                                get {
-                                       return method.ParameterTypes;
+                                       return method.ParameterInfo;
                                }
                        }
                }
 
                class SetIndexerMethod: SetMethod
                {
-                       readonly Parameters parameters;
-
                        public SetIndexerMethod (MethodCore method):
                                base (method)
                        {
                        }
 
-                       public SetIndexerMethod (MethodCore method, Parameters parameters, Accessor accessor):
+                       public SetIndexerMethod (MethodCore method, Accessor accessor):
                                base (method, accessor)
                        {
-                               this.parameters = parameters;
-                       }
-
-                       public override Type[] ParameterTypes {
-                               get {
-                                       int top = method.ParameterTypes.Length;
-                                       Type [] set_pars = new Type [top + 1];
-                                       method.ParameterTypes.CopyTo (set_pars, 0);
-                                       set_pars [top] = method.MemberType;
-                                       return set_pars;
-                               }
                        }
 
-                       protected override InternalParameters GetParameterInfo (EmitContext ec)
+                       protected override void DefineParameters ()
                        {
-                               Parameter [] fixed_parms = parameters.FixedParameters;
-
-                               if (fixed_parms == null){
-                                       throw new Exception ("We currently do not support only array arguments in an indexer at: " + method.Location);
-                                       // BUG BUG BUG BUG BUG BUG BUG BUG BUG BUG
-                                       // BUG BUG BUG BUG BUG BUG BUG BUG BUG BUG
-                                       //
-                                       // Here is the problem: the `value' parameter has
-                                       // to come *after* the array parameter in the declaration
-                                       // like this:
-                                       // X (object [] x, Type value)
-                                       // .param [0]
-                                       //
-                                       // BUG BUG BUG BUG BUG BUG BUG BUG BUG BUG
-                                       // BUG BUG BUG BUG BUG BUG BUG BUG BUG BUG
-                                       
-                               }
-                               
+                               Parameter [] fixed_parms = method.Parameters.FixedParameters;
                                Parameter [] tmp = new Parameter [fixed_parms.Length + 1];
 
                                fixed_parms.CopyTo (tmp, 0);
                                tmp [fixed_parms.Length] = new Parameter (
-                                       method.Type, "value", Parameter.Modifier.NONE, null, method.Location);
+                                       method.MemberType, "value", Parameter.Modifier.NONE, null, method.Location);
 
-                               Parameters set_formal_params = new Parameters (tmp, null);
-                               Type [] types = set_formal_params.GetParameterInfo (ec);
-                               
-                               return new InternalParameters (types, set_formal_params);
+                               parameters = new Parameters (tmp);
+                               parameters.Resolve (null);
                        }
                }
 
-
                const int AllowedModifiers =
                        Modifiers.NEW |
                        Modifiers.PUBLIC |
@@ -7096,10 +7088,10 @@ namespace Mono.CSharp {
 
                public Indexer (TypeContainer ds, Expression type, MemberName name, int mod,
                                bool is_iface, Parameters parameters, Attributes attrs,
-                               Accessor get_block, Accessor set_block, Location loc)
+                               Accessor get_block, Accessor set_block)
                        : base (ds, type, mod,
                                is_iface ? AllowedInterfaceModifiers : AllowedModifiers,
-                               is_iface, name, parameters, attrs, loc)
+                               is_iface, name, parameters, attrs)
                {
                        if (get_block == null)
                                Get = new GetIndexerMethod (this);
@@ -7109,7 +7101,7 @@ namespace Mono.CSharp {
                        if (set_block == null)
                                Set = new SetIndexerMethod (this);
                        else
-                               Set = new SetIndexerMethod (this, parameters, set_block);
+                               Set = new SetIndexerMethod (this, set_block);
                }
                       
                public override bool Define ()
@@ -7175,8 +7167,8 @@ namespace Mono.CSharp {
                                        return false;
                        }
                        
+                       SetBuilder = Set.Define (Parent);
                        if (!Set.IsDummy){
-                               SetBuilder = Set.Define (Parent);
                                if (SetBuilder == null)
                                        return false;
                        }
@@ -7186,33 +7178,11 @@ namespace Mono.CSharp {
                        //
                        Parameter [] p = Parameters.FixedParameters;
                        if (p != null) {
+                               // TODO: should be done in parser and it needs to do cycle
                                if ((p [0].ModFlags & Parameter.Modifier.ISBYREF) != 0) {
                                        Report.Error (631, Location, "ref and out are not valid in this context");
                                        return false;
                                }
-
-                               int i;
-                               
-                               for (i = 0; i < p.Length; ++i) {
-                                       if (!Get.IsDummy)
-                                               GetBuilder.DefineParameter (
-                                                       i + 1, p [i].Attributes, p [i].Name);
-
-                                       if (!Set.IsDummy)
-                                               SetBuilder.DefineParameter (
-                                                       i + 1, p [i].Attributes, p [i].Name);
-                               }
-
-                               if (!Set.IsDummy)
-                                       SetBuilder.DefineParameter (
-                                               i + 1, ParameterAttributes.None, "value");
-                                       
-                               if (i != ParameterTypes.Length) {
-                                       Parameter array_param = Parameters.ArrayParameter;
-
-                                       SetBuilder.DefineParameter (
-                                               i + 1, array_param.Attributes, array_param.Name);
-                               }
                        }
 
                        PropertyBuilder = Parent.TypeBuilder.DefineProperty (
@@ -7247,7 +7217,6 @@ namespace Mono.CSharp {
                        caching_flags |= Flags.TestMethodDuplication;
                        return true;
                }
-
        }
 
        public class Operator : MethodCore, IIteratorContainer {
@@ -7310,7 +7279,7 @@ namespace Mono.CSharp {
                                 int mod_flags, Parameters parameters,
                                 ToplevelBlock block, Attributes attrs, Location loc)
                        : base (parent, ret_type, mod_flags, AllowedModifiers, false,
-                               new MemberName ("op_" + type), attrs, parameters, loc)
+                               new MemberName ("op_" + type, loc), attrs, parameters)
                {
                        OperatorType = type;
                        Block = block;
@@ -7372,7 +7341,7 @@ namespace Mono.CSharp {
 
                        OperatorMethod = new Method (
                                Parent, Type, ModFlags, false, MemberName,
-                               Parameters, OptAttributes, Location);
+                               Parameters, OptAttributes);
 
                        OperatorMethod.Block = Block;
                        OperatorMethod.IsOperator = this;                       
@@ -7384,7 +7353,7 @@ namespace Mono.CSharp {
 
                        OperatorMethodBuilder = OperatorMethod.MethodBuilder;
 
-                       parameter_types = OperatorMethod.ParameterTypes;
+                       Type[] parameter_types = OperatorMethod.ParameterTypes;
                        Type declaring_type = OperatorMethodBuilder.DeclaringType;
                        Type return_type = OperatorMethod.ReturnType;
                        Type first_arg_type = parameter_types [0];
@@ -7440,7 +7409,7 @@ namespace Mono.CSharp {
                                        Report.Error (564, Location, "Overloaded shift operator must have the type of the first operand be the containing type, and the type of the second operand must be int");
                                        return false;
                                }
-                       } else if (Parameters.FixedParameters.Length == 1) {
+                       } else if (Parameters.Count == 1) {
                                // Checks for Unary operators
 
                                if (OperatorType == OpType.Increment || OperatorType == OpType.Decrement) {
@@ -7714,7 +7683,7 @@ namespace Mono.CSharp {
 
                        Type [] args;
                        if (mi != null)
-                               args = TypeManager.GetArgumentTypes (mi);
+                               args = TypeManager.GetParameterData (mi).Types;
                        else
                                args = TypeManager.GetArgumentTypes (pi);
                        Type [] sigp = sig.Parameters;