2004-01-19 Atsushi Enomoto <atsushi@ximian.com>
[mono.git] / mcs / gmcs / class.cs
old mode 100755 (executable)
new mode 100644 (file)
index 35afca1..e9b82d9
@@ -2,12 +2,13 @@
 // class.cs: Class and Struct handlers
 //
 // Authors: Miguel de Icaza (miguel@gnu.org)
-//          Martin Baulig (martin@gnome.org)
+//          Martin Baulig (martin@ximian.com)
 //          Marek Safar (marek.safar@seznam.cz)
 //
 // Licensed under the terms of the GNU GPL
 //
 // (C) 2001, 2002, 2003 Ximian, Inc (http://www.ximian.com)
+// (C) 2004 Novell, Inc
 //
 //
 //  2002-10-11  Miguel de Icaza  <miguel@ximian.com>
 using System;
 using System.Text;
 using System.Collections;
+using System.Collections.Specialized;
 using System.Reflection;
 using System.Reflection.Emit;
 using System.Runtime.CompilerServices;
 using System.Runtime.InteropServices;
+using System.Security;
+using System.Security.Permissions;
+using System.Xml;
 
 using Mono.CompilerServices.SymbolWriter;
 
@@ -445,8 +450,8 @@ namespace Mono.CSharp {
                protected Type[] ifaces;
                protected Type ptype;
 
-               // The parent member container and our member cache
-               IMemberContainer parent_container;
+               // The parent member cache and our member cache
+               MemberCache parent_cache;
                MemberCache member_cache;
 
                public const string DefaultIndexerName = "Item";
@@ -963,8 +968,7 @@ namespace Mono.CSharp {
                        int start, i, j;
 
                        if (Kind == Kind.Class){
-                               TypeExpr name = ResolveTypeExpr (
-                                       (Expression) Bases [0], false, Location);
+                               TypeExpr name = ResolveTypeExpr ((Expression) Bases [0], Location);
 
                                if (name == null){
                                        error = true;
@@ -985,7 +989,7 @@ namespace Mono.CSharp {
                        
                        for (i = start, j = 0; i < count; i++, j++){
                                Expression name = (Expression) Bases [i];
-                               TypeExpr resolved = ResolveTypeExpr (name, false, Location);
+                               TypeExpr resolved = ResolveTypeExpr (name, Location);
                                if (resolved == null) {
                                        error = true;
                                        return null;
@@ -1066,11 +1070,11 @@ namespace Mono.CSharp {
                                        return null;
                                }
 
-                               if (!parent.AsAccessible (this, ModFlags))
-                                       Report.Error (60, Location,
-                                                     "Inconsistent accessibility: base class `" +
-                                                     parent.Name + "' is less accessible than class `" +
-                                                     Name + "'");
+                               if (!parent.AsAccessible (this, ModFlags)) {
+                                       Report.SymbolRelatedToPreviousError (parent.Type);
+                                       Report.Error (60, Location, "Inconsistent accessibility: base class '{0}' is less accessible than class '{1}'", 
+                                               TypeManager.CSharpName (parent.Type), GetSignatureForError ());
+                               }
                        }
 
                        if (parent != null)
@@ -1096,13 +1100,17 @@ namespace Mono.CSharp {
                                }
 
                                if (iface.IsClass) {
-                                       if (parent != null){
-                                               Report.Error (527, Location,
+                                       if (parent != null)
+                                               Report.Error (1721, Location,
+                                                             "In Class `{0}', `{1}' is not an interface, and a base class has already been defined",
+                                                             Name, iface.Name);
+                                       else {
+                                               Report.Error (1722, Location,
                                                              "In Class `{0}', `{1}' is not " +
-                                                             "an interface", Name, iface.Name);
-                                               error = true;
-                                               return null;
+                                                             "an interface, a base class must be listed first", Name, iface.Name);
                                        }
+                                       error = true;
+                                       return null;
                                }
   
                                for (int x = 0; x < i; x++) {
@@ -1137,7 +1145,8 @@ namespace Mono.CSharp {
                                        if (iface == t)
                                                continue;
 
-                                       if (!TypeManager.MayBecomeEqualGenericInstances (iface, t))
+                                       Type[] infered = new Type [CountTypeParameters];
+                                       if (!TypeManager.MayBecomeEqualGenericInstances (iface, t, infered, null))
                                                continue;
 
                                        Report.Error (
@@ -1203,12 +1212,14 @@ namespace Mono.CSharp {
                                }
                        }
                        catch (ArgumentException) {
-                               Report.RuntimeMissingSupport ("static classes");
+                               Report.RuntimeMissingSupport (Location, "static classes");
                                return null;
                        }
 
                        TypeManager.AddUserType (Name, TypeBuilder, this);
 
+                       TypeExpr current_type = null;
+
                        if (IsGeneric) {
                                string[] param_names = new string [TypeParameters.Length];
                                for (int i = 0; i < TypeParameters.Length; i++)
@@ -1231,7 +1242,7 @@ namespace Mono.CSharp {
                                for (int i = offset; i < gen_params.Length; i++)
                                        CurrentTypeParameters [i - offset].DefineConstraints ();
 
-                               CurrentType = new ConstructedType (Name, TypeParameters, Location);
+                               current_type = new ConstructedType (Name, TypeParameters, Location);
                        }
 
                        if (IsGeneric) {
@@ -1268,18 +1279,14 @@ namespace Mono.CSharp {
                                }
                        }
 
-                       ConstructedType constructed = parent_type as ConstructedType;
-                       if ((constructed == null) && (parent_type != null))
-                               ptype = parent_type.ResolveType (ec);
-                       else
-                               ptype = null;
-
-                       if (constructed != null) {
-                               ptype = constructed.ResolveType (ec);
-                               if (ptype == null) {
+                       if (parent_type != null) {
+                               parent_type = parent_type.ResolveAsTypeTerminal (ec);
+                               if (parent_type == null) {
                                        error = true;
                                        return null;
                                }
+
+                               ptype = parent_type.Type;
                        }
 
                        if (!CheckRecursiveDefinition ()) {
@@ -1329,6 +1336,16 @@ namespace Mono.CSharp {
                                        }
                        }
 
+                       if (current_type != null) {
+                               current_type = current_type.ResolveAsTypeTerminal (ec);
+                               if (current_type == null) {
+                                       error = true;
+                                       return null;
+                               }
+
+                               CurrentType = current_type.Type;
+                       }
+
                        //
                        // Finish the setup for the EmitContext
                        //
@@ -1429,16 +1446,16 @@ namespace Mono.CSharp {
                        return members_defined_ok;
                }
 
-               bool DoDefineMembers ()
+               protected virtual bool DoDefineMembers ()
                {
                        //
                        // We need to be able to use the member cache while we are checking/defining
                        //
                        if (TypeBuilder.BaseType != null)
-                               parent_container = TypeManager.LookupMemberContainer (TypeBuilder.BaseType);
+                               parent_cache = TypeManager.LookupMemberCache (TypeBuilder.BaseType);
 
                        if (TypeBuilder.IsInterface)
-                               parent_container = TypeManager.LookupInterfaceContainer (ifaces);
+                               parent_cache = TypeManager.LookupParentInterfacesCache (TypeBuilder);
 
                        if (IsTopLevel) {
                                if ((ModFlags & Modifiers.NEW) != 0)
@@ -1518,7 +1535,7 @@ namespace Mono.CSharp {
                        DefineContainerMembers (delegates);
 
                        if (CurrentType != null) {
-                               GenericType = CurrentType.ResolveType (ec);
+                               GenericType = CurrentType;
 
                                ec.ContainerType = GenericType;
                        }
@@ -1526,7 +1543,7 @@ namespace Mono.CSharp {
 
 #if CACHE
                        if (!(this is ClassPart))
-                       member_cache = new MemberCache (this, false);
+                               member_cache = new MemberCache (this);
 #endif
 
                        if (parts != null) {
@@ -1581,7 +1598,7 @@ namespace Mono.CSharp {
 
                public MemberInfo FindMemberWithSameName (string name, bool ignore_methods)
                {
-                       return ParentContainer.MemberCache.FindMemberWithSameName (name, ignore_methods, null);
+                       return ParentCache.FindMemberWithSameName (name, ignore_methods, null);
                }
 
                /// <summary>
@@ -2287,7 +2304,7 @@ namespace Mono.CSharp {
                        type_bases = null;
                        OptAttributes = null;
                        ifaces = null;
-                       parent_container = null;
+                       parent_cache = null;
                        member_cache = null;
                }
 
@@ -2387,6 +2404,10 @@ namespace Mono.CSharp {
                        }
                }
 
+               public Constructor DefaultStaticConstructor {
+                       get { return default_static_constructor; }
+               }
+
                protected override bool VerifyClsCompliance (DeclSpace ds)
                {
                        if (!base.VerifyClsCompliance (ds))
@@ -2394,9 +2415,15 @@ namespace Mono.CSharp {
 
                        VerifyClsName ();
 
-                       // parent_container is null for System.Object
-                       if (parent_container != null && !AttributeTester.IsClsCompliant (parent_container.Type)) {
-                               Report.Error (3009, Location, "'{0}': base type '{1}' is not CLS-compliant", GetSignatureForError (), TypeManager.CSharpName (parent_container.Type));
+                       if (IsGeneric) {
+                               Report.Error (3024, Location, "'{0}': type parameters are not CLS-compliant",
+                                             GetSignatureForError ());
+                               return false;
+                       }
+
+                       Type base_type = TypeBuilder.BaseType;
+                       if (base_type != null && !AttributeTester.IsClsCompliant (base_type)) {
+                               Report.Error (3009, Location, "'{0}': base type '{1}' is not CLS-compliant", GetSignatureForError (), TypeManager.CSharpName (base_type));
                        }
                        return true;
                }
@@ -2407,9 +2434,9 @@ namespace Mono.CSharp {
                /// </summary>
                void VerifyClsName ()
                {
-                       Hashtable parent_members = parent_container == null ? 
+                       Hashtable parent_members = parent_cache == null ? 
                                new Hashtable () :
-                               parent_container.MemberCache.GetPublicMembers ();
+                               parent_cache.GetPublicMembers ();
                        Hashtable this_members = new Hashtable ();
 
                        foreach (DictionaryEntry entry in defined_names) {
@@ -2523,9 +2550,22 @@ namespace Mono.CSharp {
                                return FindMembers (mt, new_bf, null, null);
                }
 
-               public virtual IMemberContainer ParentContainer {
+               //
+               // Generates xml doc comments (if any), and if required,
+               // handle warning report.
+               //
+               internal override void GenerateDocComment (DeclSpace ds)
+               {
+                       DocUtil.GenerateTypeDocComment (this, ds);
+               }
+
+               public override string DocCommentHeader {
+                       get { return "T:"; }
+               }
+
+               public virtual MemberCache ParentCache {
                        get {
-                               return parent_container;
+                               return parent_cache;
                        }
                }
                
@@ -2539,11 +2579,11 @@ namespace Mono.CSharp {
                public readonly TypeAttributes DefaultTypeAttributes;
 
                static PartialContainer Create (NamespaceEntry ns, TypeContainer parent,
-                                               MemberName name, int mod_flags, Kind kind,
+                                               MemberName member_name, int mod_flags, Kind kind,
                                                Location loc)
                {
                        PartialContainer pc;
-                       string full_name = name.GetName (true);
+                       string full_name = member_name.GetName (true);
                        DeclSpace ds = (DeclSpace) RootContext.Tree.Decls [full_name];
                        if (ds != null) {
                                pc = ds as PartialContainer;
@@ -2553,7 +2593,7 @@ namespace Mono.CSharp {
                                                260, ds.Location, "Missing partial modifier " +
                                                "on declaration of type `{0}'; another " +
                                                "partial implementation of this type exists",
-                                               name);
+                                               member_name.GetTypeName());
 
                                        Report.LocationOfPreviousError (loc);
                                        return null;
@@ -2563,7 +2603,7 @@ namespace Mono.CSharp {
                                        Report.Error (
                                                261, loc, "Partial declarations of `{0}' " +
                                                "must be all classes, all structs or " +
-                                               "all interfaces", name);
+                                               "all interfaces", member_name.GetTypeName ());
                                        return null;
                                }
 
@@ -2571,14 +2611,14 @@ namespace Mono.CSharp {
                                        Report.Error (
                                                262, loc, "Partial declarations of `{0}' " +
                                                "have conflicting accessibility modifiers",
-                                               name);
+                                               member_name.GetTypeName ());
                                        return null;
                                }
 
                                return pc;
                        }
 
-                       pc = new PartialContainer (ns, parent, name, mod_flags, kind, loc);
+                       pc = new PartialContainer (ns, parent, member_name, mod_flags, kind, loc);
                        RootContext.Tree.RecordDecl (full_name, pc);
                        parent.AddType (pc);
                        pc.Register ();
@@ -2704,15 +2744,16 @@ namespace Mono.CSharp {
                                interface_type, full, name, loc);
                }
 
-               public override IMemberContainer ParentContainer {
+               public override MemberCache ParentCache {
                        get {
-                               return PartialContainer.ParentContainer;
+                               return PartialContainer.ParentCache;
                        }
                }
        }
 
        public abstract class ClassOrStruct : TypeContainer {
                bool hasExplicitLayout = false;
+               ListDictionary declarative_security;
 
                public ClassOrStruct (NamespaceEntry ns, TypeContainer parent,
                                      MemberName name, Attributes attrs, Kind kind,
@@ -2746,6 +2787,14 @@ namespace Mono.CSharp {
 
                public override void ApplyAttributeBuilder (Attribute a, CustomAttributeBuilder cb)
                {
+                       if (a.Type.IsSubclassOf (TypeManager.security_attr_type) && a.CheckSecurityActionValidity (false)) {
+                               if (declarative_security == null)
+                                       declarative_security = new ListDictionary ();
+
+                               a.ExtractSecurityPermissionSet (declarative_security);
+                               return;
+                       }
+
                        if (a.Type == TypeManager.struct_layout_attribute_type
                            && (LayoutKind) a.GetPositionalValue (0) == LayoutKind.Explicit)
                                hasExplicitLayout = true;
@@ -2753,6 +2802,17 @@ namespace Mono.CSharp {
                        base.ApplyAttributeBuilder (a, cb);
                }
 
+               public override void Emit()
+               {
+                       base.Emit ();
+
+                       if (declarative_security != null) {
+                               foreach (DictionaryEntry de in declarative_security) {
+                                       TypeBuilder.AddDeclarativeSecurity ((SecurityAction)de.Key, (PermissionSet)de.Value);
+                               }
+                       }
+               }
+
                public override void Register ()
                {
                        Parent.AddClassOrStruct (this);
@@ -3100,7 +3160,7 @@ namespace Mono.CSharp {
                                return true;
 
                        // Is null for System.Object while compiling corlib and base interfaces
-                       if (Parent.ParentContainer == null) {
+                       if (Parent.ParentCache == 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 (Parent));
                                }
@@ -3163,7 +3223,7 @@ namespace Mono.CSharp {
                                        else
                                                Report.Error (505, Location, "'{0}': cannot override because '{1}' is not a method", GetSignatureForError (Parent), TypeManager.GetFullNameSignature (conflict_symbol));
                                } else
-                                       Report.Error (115, Location, "'{0}': no suitable methods found to override", GetSignatureForError (Parent));
+                               Report.Error (115, Location, "'{0}': no suitable methods found to override", GetSignatureForError (Parent));
                                return false;
                        }
 
@@ -3232,58 +3292,9 @@ namespace Mono.CSharp {
                                MethodAttributes thisp = flags & MethodAttributes.MemberAccessMask;
                                MethodAttributes parentp = parent_method.Attributes & MethodAttributes.MemberAccessMask;
 
-                               //
-                               // special case for "protected internal"
-                               //
-
-                               if ((parentp & MethodAttributes.FamORAssem) == MethodAttributes.FamORAssem){
-                                       //
-                                       // when overriding protected internal, the method can be declared
-                                       // protected internal only within the same assembly
-                                       //
-
-                                       if ((thisp & MethodAttributes.FamORAssem) == MethodAttributes.FamORAssem){
-                                               if (Parent.TypeBuilder.Assembly != parent_method.DeclaringType.Assembly){
-                                                       //
-                                                       // assemblies differ - report an error
-                                                       //
-                                                       
-                                                       Error_CannotChangeAccessModifiers (Parent, parent_method, name);
-                                                   ok = false;
-                                               } else if (thisp != parentp) {
-                                                       //
-                                                       // same assembly, but other attributes differ - report an error
-                                                       //
-                                                       
-                                                       Error_CannotChangeAccessModifiers (Parent, parent_method, name);
-                                                       ok = false;
-                                               };
-                                       } else if ((thisp & MethodAttributes.Family) != MethodAttributes.Family) {
-                                               //
-                                               // if it's not "protected internal", it must be "protected"
-                                               //
-
-                                               Error_CannotChangeAccessModifiers (Parent, parent_method, name);
-                                               ok = false;
-                                       } else if (Parent.TypeBuilder.Assembly == parent_method.DeclaringType.Assembly) {
-                                               //
-                                               // protected within the same assembly - an error
-                                               //
-                                               Error_CannotChangeAccessModifiers (Parent, parent_method, name);
-                                               ok = false;
-                                       } else if ((thisp & ~(MethodAttributes.Family | MethodAttributes.FamORAssem)) != 
-                                                  (parentp & ~(MethodAttributes.Family | MethodAttributes.FamORAssem))) {
-                                               //
-                                               // protected ok, but other attributes differ - report an error
-                                               //
-                                               Error_CannotChangeAccessModifiers (Parent, parent_method, name);
-                                               ok = false;
-                                       }
-                               } else {
-                                       if (thisp != parentp){
-                                               Error_CannotChangeAccessModifiers (Parent, parent_method, name);
-                                               ok = false;
-                                       }
+                               if (!CheckAccessModifiers (thisp, parentp, parent_method)) {
+                                       Error_CannotChangeAccessModifiers (Parent, parent_method, name);
+                                       ok = false;
                                }
                        }
 
@@ -3299,7 +3310,53 @@ namespace Mono.CSharp {
 
                        return ok;
                }
+               
+               protected bool CheckAccessModifiers (MethodAttributes thisp, MethodAttributes parentp, MethodInfo base_method)
+               {
+                       if ((parentp & MethodAttributes.FamORAssem) == MethodAttributes.FamORAssem){
+                               //
+                               // when overriding protected internal, the method can be declared
+                               // protected internal only within the same assembly
+                               //
+
+                               if ((thisp & MethodAttributes.FamORAssem) == MethodAttributes.FamORAssem){
+                                       if (Parent.TypeBuilder.Assembly != base_method.DeclaringType.Assembly){
+                                               //
+                                               // assemblies differ - report an error
+                                               //
+                                               
+                                               return false;
+                                       } else if (thisp != parentp) {
+                                               //
+                                               // same assembly, but other attributes differ - report an error
+                                               //
+                                               
+                                               return false;
+                                       };
+                               } else if ((thisp & MethodAttributes.Family) != MethodAttributes.Family) {
+                                       //
+                                       // if it's not "protected internal", it must be "protected"
+                                       //
 
+                                       return false;
+                               } else if (Parent.TypeBuilder.Assembly == base_method.DeclaringType.Assembly) {
+                                       //
+                                       // protected within the same assembly - an error
+                                       //
+                                       return false;
+                               } else if ((thisp & ~(MethodAttributes.Family | MethodAttributes.FamORAssem)) != 
+                                          (parentp & ~(MethodAttributes.Family | MethodAttributes.FamORAssem))) {
+                                       //
+                                       // protected ok, but other attributes differ - report an error
+                                       //
+                                       return false;
+                               }
+                               return true;
+                       } else {
+                               return (thisp == parentp);
+                       }
+               }
+               
                void Error_CannotChangeAccessModifiers (TypeContainer parent, MethodInfo parent_method, string name)
                {
                        //
@@ -3436,7 +3493,12 @@ namespace Mono.CSharp {
                        }
 
                        if (!AttributeTester.IsClsCompliant (MemberType)) {
-                               Report.Error (3002, Location, "Return type of '{0}' is not CLS-compliant", GetSignatureForError ());
+                               if ((this is Property) || (this is Indexer))
+                                       Report.Error (3003, Location, "Type of `{0}' is not CLS-compliant",
+                                                     GetSignatureForError ());
+                               else
+                                       Report.Error (3002, Location, "Return type of '{0}' is not CLS-compliant",
+                                                     GetSignatureForError ());
                        }
 
                        AttributeTester.AreParametersCompliant (Parameters.FixedParameters, Location);
@@ -3444,6 +3506,34 @@ namespace Mono.CSharp {
                        return true;
                }
 
+               bool MayUnify (MethodCore first, MethodCore second)
+               {
+                       int a_type_params = 0;
+                       if (first.GenericMethod != null)
+                               a_type_params = first.GenericMethod.CountTypeParameters;
+
+                       int b_type_params = 0;
+                       if (second.GenericMethod != null)
+                               b_type_params = second.GenericMethod.CountTypeParameters;
+
+                       if (a_type_params != b_type_params)
+                               return false;
+
+                       Type[] class_infered, method_infered;
+                       if (Parent.CountTypeParameters > 0)
+                               class_infered = new Type [Parent.CountTypeParameters];
+                       else
+                               class_infered = null;
+
+                       if (a_type_params > 0)
+                               method_infered = new Type [a_type_params];
+                       else
+                               method_infered = null;
+
+                       return TypeManager.MayBecomeEqualGenericInstances (
+                               first.ParameterTypes, second.ParameterTypes, class_infered, method_infered);
+               }
+
                protected bool IsDuplicateImplementation (MethodCore method)
                {
                        if ((method == this) ||
@@ -3457,38 +3547,8 @@ namespace Mono.CSharp {
                        if (param_types.Length != ParameterTypes.Length)
                                return false;
 
-                       int type_params = 0;
-                       if (GenericMethod != null)
-                               type_params = GenericMethod.CountTypeParameters;
-
-                       int m_type_params = 0;
-                       if (method.GenericMethod != null)
-                               m_type_params = method.GenericMethod.CountTypeParameters;
-
-                       if (type_params != m_type_params)
-                               return false;
-
                        bool equal = true;
-                       bool may_unify;
-
-                       Type[] infered_types;
-                       if (type_params > 0)
-                               infered_types = new Type [type_params];
-                       else
-                               infered_types = null;
-
-                       may_unify = Invocation.InferTypeArguments (
-                               param_types, ParameterTypes, ref infered_types);
-
-                       if (!may_unify) {
-                               if (type_params > 0)
-                                       infered_types = new Type [type_params];
-                               else
-                                       infered_types = null;
-
-                               may_unify = Invocation.InferTypeArguments (
-                                       ParameterTypes, param_types, ref infered_types);
-                       }
+                       bool may_unify = MayUnify (this, method);
 
                        for (int i = 0; i < param_types.Length; i++) {
                                if (param_types [i] != ParameterTypes [i])
@@ -3498,7 +3558,7 @@ namespace Mono.CSharp {
                        // TODO: make operator compatible with MethodCore to avoid this
                        if (this is Operator && method is Operator) {
                                if (MemberType != method.MemberType)
-                                       equal = false;
+                                       equal = may_unify = false;
                        }
 
                        if (equal) {
@@ -3523,13 +3583,41 @@ namespace Mono.CSharp {
                                Report.Error (408, Location,
                                              "`{0}' cannot define overload members that " +
                                              "may unify for some type parameter substitutions",
-                                             Parent.Name);
+                                             Parent.MemberName);
                                return true;
                        }
 
                        return false;
                }
 
+               //
+               // Returns a string that represents the signature for this 
+               // member which should be used in XML documentation.
+               //
+               public override string GetDocCommentName (DeclSpace ds)
+               {
+                       return DocUtil.GetMethodDocCommentName (this, ds);
+               }
+
+               //
+               // Raised (and passed an XmlElement that contains the comment)
+               // when GenerateDocComment is writing documentation expectedly.
+               //
+               // FIXME: with a few effort, it could be done with XmlReader,
+               // that means removal of DOM use.
+               //
+               internal override void OnGenerateDocComment (DeclSpace ds, XmlElement el)
+               {
+                       DocUtil.OnMethodGenerateDocComment (this, ds, el);
+               }
+
+               //
+               //   Represents header string for documentation comment.
+               //
+               public override string DocCommentHeader {
+                       get { return "M:"; }
+               }
+
                protected override void VerifyObsoleteAttribute()
                {
                        base.VerifyObsoleteAttribute ();
@@ -3612,6 +3700,7 @@ namespace Mono.CSharp {
                public MethodBuilder MethodBuilder;
                public MethodData MethodData;
                ReturnParameter return_attributes;
+               ListDictionary declarative_security;
 
                /// <summary>
                ///   Modifiers allowed in a class declaration
@@ -3739,6 +3828,13 @@ namespace Mono.CSharp {
                                return;
                        }
 
+                       if (a.Type.IsSubclassOf (TypeManager.security_attr_type) && a.CheckSecurityActionValidity (false)) {
+                               if (declarative_security == null)
+                                       declarative_security = new ListDictionary ();
+                               a.ExtractSecurityPermissionSet (declarative_security);
+                               return;
+                       }
+
                        if (a.Type == TypeManager.conditional_attribute_type) {
                                if (IsOperator || IsExplicitImpl) {
                                        Report.Error (577, Location, "Conditional not valid on '{0}' because it is a destructor, operator, or explicit interface implementation", GetSignatureForError ());
@@ -3907,13 +4003,20 @@ namespace Mono.CSharp {
                {
                        MethodData.Emit (Parent, this);
                        base.Emit ();
+
+                       if (declarative_security != null) {
+                               foreach (DictionaryEntry de in declarative_security) {
+                                       MethodBuilder.AddDeclarativeSecurity ((SecurityAction)de.Key, (PermissionSet)de.Value);
+                               }
+                       }
+
                        Block = null;
                        MethodData = null;
                }
 
                protected override MethodInfo FindOutParentMethod (TypeContainer container, ref Type parent_ret_type)
                {
-                       MethodInfo mi = (MethodInfo) container.ParentContainer.MemberCache.FindMemberToOverride (
+                       MethodInfo mi = (MethodInfo) container.ParentCache.FindMemberToOverride (
                                container.TypeBuilder, Name, ParameterTypes, false);
 
                        if (mi == null)
@@ -4239,6 +4342,7 @@ namespace Mono.CSharp {
        public class Constructor : MethodCore, IMethodData {
                public ConstructorBuilder ConstructorBuilder;
                public ConstructorInitializer Initializer;
+               ListDictionary declarative_security;
 
                // <summary>
                //   Modifiers allowed for a constructor.
@@ -4304,6 +4408,14 @@ namespace Mono.CSharp {
 
                public override void ApplyAttributeBuilder (Attribute a, CustomAttributeBuilder cb)
                {
+                       if (a.Type.IsSubclassOf (TypeManager.security_attr_type) && a.CheckSecurityActionValidity (false)) {
+                               if (declarative_security == null) {
+                                       declarative_security = new ListDictionary ();
+                               }
+                               a.ExtractSecurityPermissionSet (declarative_security);
+                               return;
+                       }
+
                        ConstructorBuilder.SetCustomAttribute (cb);
                }
 
@@ -4493,6 +4605,12 @@ namespace Mono.CSharp {
 
                        base.Emit ();
 
+                       if (declarative_security != null) {
+                               foreach (DictionaryEntry de in declarative_security) {
+                                       ConstructorBuilder.AddDeclarativeSecurity ((SecurityAction)de.Key, (PermissionSet)de.Value);
+                               }
+                       }
+
                        block = null;
                }
 
@@ -4699,13 +4817,13 @@ namespace Mono.CSharp {
 
                        string prefix;
                        if (member.IsExplicitImpl)
-                               prefix = RemoveArity (member.InterfaceType.FullName) + ".";
+                               prefix = member.InterfaceType.FullName + ".";
                        else
                                prefix = "";
 
-                       string name = method.MethodName.Name;
+                       string name = method.MethodName.Basename;
                        string method_name = prefix + name;
-  
+
                        Type[] ParameterTypes = method.ParameterTypes;
 
                        if (container.Pending != null){
@@ -4716,9 +4834,12 @@ namespace Mono.CSharp {
                                        implementing = container.Pending.IsInterfaceMethod (
                                                member.InterfaceType, name, method.ReturnType, ParameterTypes);
 
-                               if (member.InterfaceType != null && implementing == null){
-                                       Report.Error (539, method.Location, "'{0}' in explicit interface declaration is not an interface", method_name);
-                                       return false;
+                               if (member.InterfaceType != null){
+                                       if (implementing == null){
+                                               Report.Error (539, method.Location,
+                                                             "'{0}' in explicit interface declaration is not an interface", method_name);
+                                               return false;
+                                       }
                                }
                        }
 
@@ -4797,7 +4918,7 @@ namespace Mono.CSharp {
                                return false;
 
                        if (container.CurrentType != null)
-                               declaring_type = container.CurrentType.ResolveType (ec);
+                               declaring_type = container.CurrentType;
                        else
                                declaring_type = container.TypeBuilder;
 
@@ -5175,15 +5296,13 @@ namespace Mono.CSharp {
                        // Lookup Type, verify validity
                        bool old_unsafe = ec.InUnsafe;
                        ec.InUnsafe = InUnsafe;
-                       TypeExpr texpr = Type.ResolveAsTypeTerminal (ec, false);
+                       TypeExpr texpr = Type.ResolveAsTypeTerminal (ec);
                        ec.InUnsafe = old_unsafe;
 
                        if (texpr == null)
                                return false;
 
-                       MemberType = texpr.ResolveType (ec);
-                       if (MemberType == null)
-                               return false;
+                       MemberType = texpr.Type;
 
                        if ((Parent.ModFlags & Modifiers.SEALED) != 0){
                                if ((ModFlags & (Modifiers.VIRTUAL|Modifiers.ABSTRACT)) != 0){
@@ -5204,8 +5323,8 @@ namespace Mono.CSharp {
                                                      "Inconsistent accessibility: indexer return type `" +
                                                      TypeManager.CSharpName (MemberType) + "' is less " +
                                                      "accessible than indexer `" + Name + "'");
-                               else if (this is Method) {
-                                       if (((Method) this).IsOperator)
+                               else if (this is MethodCore) {
+                                       if (this is Operator)
                                                Report.Error (56, Location,
                                                              "Inconsistent accessibility: return type `" +
                                                              TypeManager.CSharpName (MemberType) + "' is less " +
@@ -5215,11 +5334,12 @@ namespace Mono.CSharp {
                                                              "Inconsistent accessibility: return type `" +
                                                              TypeManager.CSharpName (MemberType) + "' is less " +
                                                              "accessible than method `" + Name + "'");
-                               } else
+                               } else {
                                        Report.Error (52, Location,
                                                      "Inconsistent accessibility: field type `" +
                                                      TypeManager.CSharpName (MemberType) + "' is less " +
                                                      "accessible than field `" + Name + "'");
+                               }
                                return false;
                        }
 
@@ -5228,16 +5348,14 @@ namespace Mono.CSharp {
 
                        if (IsExplicitImpl) {
                                Expression expr = ExplicitInterfaceName.GetTypeExpression (Location);
-                               TypeExpr iface_texpr = expr.ResolveAsTypeTerminal (ec, false);
+                               TypeExpr iface_texpr = expr.ResolveAsTypeTerminal (ec);
                                if (iface_texpr == null)
                                        return false;
 
-                               InterfaceType = iface_texpr.ResolveType (ec);
-                               if (InterfaceType == null)
-                                       return false;
+                               InterfaceType = iface_texpr.Type;
 
-                               if (InterfaceType.IsClass) {
-                                       Report.Error (538, Location, "'{0}' in explicit interface declaration is not an interface", ExplicitInterfaceName);
+                               if (!InterfaceType.IsInterface) {
+                                       Report.Error (538, Location, "'{0}' in explicit interface declaration is not an interface", TypeManager.CSharpName (InterfaceType));
                                        return false;
                                }
 
@@ -5301,7 +5419,8 @@ namespace Mono.CSharp {
                [Flags]
                public enum Status : byte {
                        ASSIGNED = 1,
-                       USED = 2
+                       USED = 2,
+                       HAS_OFFSET = 4          // Used by FieldMember.
                }
 
                static string[] attribute_targets = new string [] { "field" };
@@ -5332,16 +5451,18 @@ namespace Mono.CSharp {
                public override void ApplyAttributeBuilder (Attribute a, CustomAttributeBuilder cb)
                {
                        if (a.Type == TypeManager.marshal_as_attr_type) {
-                               UnmanagedMarshal marshal = a.GetMarshal ();
+                               UnmanagedMarshal marshal = a.GetMarshal (this);
                                if (marshal != null) {
                                        FieldBuilder.SetMarshal (marshal);
+                               }
                                        return;
                                }
-                               Report.Warning (-24, a.Location, "The Microsoft Runtime cannot set this marshal info. Please use the Mono runtime instead.");
+
+                       if (a.Type.IsSubclassOf (TypeManager.security_attr_type)) {
+                               a.Error_InvalidSecurityParent ();
                                return;
                        }
 
-                       
                        FieldBuilder.SetCustomAttribute (cb);
                }
 
@@ -5464,7 +5585,7 @@ namespace Mono.CSharp {
 
        public abstract class FieldMember: FieldBase
        {
-               bool has_field_offset = false;
+               
 
                protected FieldMember (TypeContainer parent, Expression type, int mod,
                        int allowed_mod, MemberName name, object init, Attributes attrs, Location loc)
@@ -5476,7 +5597,7 @@ namespace Mono.CSharp {
                {
                        if (a.Type == TypeManager.field_offset_attribute_type)
                        {
-                               has_field_offset = true;
+                               status |= Status.HAS_OFFSET;
 
                                if (!Parent.HasExplicitLayout) {
                                        Report.Error (636, Location, "The FieldOffset attribute can only be placed on members of types marked with the StructLayout(LayoutKind.Explicit)");
@@ -5500,23 +5621,21 @@ namespace Mono.CSharp {
 
                        bool old_unsafe = ec.InUnsafe;
                        ec.InUnsafe = InUnsafe;
-                       TypeExpr texpr = Type.ResolveAsTypeTerminal (ec, false);
-                       if (texpr == null)
-                               return false;
-
-                       MemberType = texpr.ResolveType (ec);
+                       TypeExpr texpr = Type.ResolveAsTypeTerminal (ec);
                        ec.InUnsafe = old_unsafe;
-                       if (MemberType == null)
+                       if (texpr == null)
                                return false;
+                       
+                       MemberType = texpr.Type;
 
                        if (!CheckBase ())
                                return false;
-
+                       
                        if (!Parent.AsAccessible (MemberType, ModFlags)) {
                                Report.Error (52, Location,
-                                             "Inconsistent accessibility: field type `" +
-                                             TypeManager.CSharpName (MemberType) + "' is less " +
-                                             "accessible than field `" + Name + "'");
+                                       "Inconsistent accessibility: field type `" +
+                                       TypeManager.CSharpName (MemberType) + "' is less " +
+                                       "accessible than field `" + Name + "'");
                                return false;
                        }
 
@@ -5531,12 +5650,19 @@ namespace Mono.CSharp {
 
                public override void Emit ()
                {
-                       if (Parent.HasExplicitLayout && !has_field_offset && (ModFlags & Modifiers.STATIC) == 0) {
+                       if (Parent.HasExplicitLayout && ((status & Status.HAS_OFFSET) == 0) && (ModFlags & Modifiers.STATIC) == 0) {
                                Report.Error (625, Location, "'{0}': Instance field types marked with StructLayout(LayoutKind.Explicit) must have a FieldOffset attribute.", GetSignatureForError ());
                        }
 
                        base.Emit ();
                }
+
+               //
+               //   Represents header string for documentation comment.
+               //
+               public override string DocCommentHeader {
+                       get { return "F:"; }
+               }
        }
 
        //
@@ -5660,15 +5786,23 @@ namespace Mono.CSharp {
                //
                // Null if the accessor is empty, or a Block if not
                //
+               public const int AllowedModifiers = 
+                       Modifiers.PUBLIC |
+                       Modifiers.PROTECTED |
+                       Modifiers.INTERNAL |
+                       Modifiers.PRIVATE;
+               
                public ToplevelBlock Block;
                public Attributes Attributes;
                public Location Location;
+               public int ModFlags;
                
-               public Accessor (ToplevelBlock b, Attributes attrs, Location loc)
+               public Accessor (ToplevelBlock b, int mod, Attributes attrs, Location loc)
                {
                        Block = b;
                        Attributes = attrs;
                        Location = loc;
+                       ModFlags = Modifiers.Check (AllowedModifiers, mod, 0, loc);
                }
        }
 
@@ -5678,6 +5812,7 @@ namespace Mono.CSharp {
        public abstract class AbstractPropertyEventMethod: MemberCore, IMethodData {
                protected MethodData method_data;
                protected ToplevelBlock block;
+               protected ListDictionary declarative_security;
 
                // The accessor are created event if they are not wanted.
                // But we need them because their names are reserved.
@@ -5762,7 +5897,14 @@ namespace Mono.CSharp {
                {
                        if (a.Type == TypeManager.cls_compliant_attribute_type || a.Type == TypeManager.obsolete_attribute_type ||
                                        a.Type == TypeManager.conditional_attribute_type) {
-                               Report.Error (1667, a.Location, "'{0}' is not valid on property or event accessors. It is valid on '{1}' declarations only", TypeManager.CSharpName (a.Type), a.GetValidTargets ());
+                               Report.Error (1667, a.Location, "'{0}' is not valid on property or event accessors. It is valid on {1} declarations only", TypeManager.CSharpName (a.Type), a.GetValidTargets ());
+                               return;
+                       }
+
+                       if (a.Type.IsSubclassOf (TypeManager.security_attr_type) && a.CheckSecurityActionValidity (false)) {
+                               if (declarative_security == null)
+                                       declarative_security = new ListDictionary ();
+                               a.ExtractSecurityPermissionSet (declarative_security);
                                return;
                        }
 
@@ -5789,12 +5931,19 @@ namespace Mono.CSharp {
 
                public override bool Define()
                {
-                       return false;
+                       throw new NotSupportedException ();
                }
 
                public virtual void Emit (TypeContainer container)
                {
                        method_data.Emit (container, this);
+
+                       if (declarative_security != null) {
+                               foreach (DictionaryEntry de in declarative_security) {
+                                       method_data.MethodBuilder.AddDeclarativeSecurity ((SecurityAction)de.Key, (PermissionSet)de.Value);
+                               }
+                       }
+
                        block = null;
                }
 
@@ -5829,6 +5978,13 @@ namespace Mono.CSharp {
                        }
                }
 
+               //
+               //   Represents header string for documentation comment.
+               //
+               public override string DocCommentHeader {
+                       get { throw new InvalidOperationException ("Unexpected attempt to get doc comment from " + this.GetType () + "."); }
+               }
+
                protected override void VerifyObsoleteAttribute()
                {
                }
@@ -5857,7 +6013,9 @@ namespace Mono.CSharp {
 
                        public override MethodBuilder Define(TypeContainer container)
                        {
-                               method_data = new MethodData (method, method.ParameterInfo, method.ModFlags, method.flags, this);
+                               base.Define (container);
+                               
+                               method_data = new MethodData (method, method.ParameterInfo, ModFlags, flags, this);
 
                                if (!method_data.Define (container))
                                        return null;
@@ -5924,7 +6082,10 @@ namespace Mono.CSharp {
                        {
                                if (container.EmitContext == null)
                                        throw new InternalErrorException ("SetMethod.Define called too early");
-                               method_data = new MethodData (method, GetParameterInfo (container.EmitContext), method.ModFlags, method.flags, this);
+                                       
+                               base.Define (container);
+                               
+                               method_data = new MethodData (method, GetParameterInfo (container.EmitContext), ModFlags, flags, this);
 
                                if (!method_data.Define (container))
                                        return null;
@@ -5960,6 +6121,7 @@ namespace Mono.CSharp {
 
                public abstract class PropertyMethod: AbstractPropertyEventMethod {
                        protected readonly MethodCore method;
+                       protected MethodAttributes flags;
 
                        public PropertyMethod (MethodCore method, string prefix)
                                : base (method, prefix)
@@ -5971,6 +6133,12 @@ namespace Mono.CSharp {
                                : base (method, accessor, prefix)
                        {
                                this.method = method;
+                               this.ModFlags = accessor.ModFlags;
+
+                               if (accessor.ModFlags != 0 && RootContext.Version == LanguageVersion.ISO_1) {
+                                       Report.FeatureIsNotStandardized (Location, "accessor modifiers");
+                                       Environment.Exit (1);
+                               }
                        }
 
                        public override AttributeTargets AttributeTargets {
@@ -5991,7 +6159,24 @@ namespace Mono.CSharp {
                                }
                        }
 
-                       public abstract MethodBuilder Define (TypeContainer container);
+                       public virtual MethodBuilder Define (TypeContainer container)
+                       {
+                               //
+                               // Check for custom access modifier
+                               //
+                                if (ModFlags == 0) {
+                                        ModFlags = method.ModFlags;
+                                        flags = method.flags;
+                                } else {
+                                       CheckModifiers (container, ModFlags);
+                                       ModFlags |= (method.ModFlags & (~Modifiers.Accessibility));
+                                       flags = Modifiers.MethodAttr (ModFlags);
+                                       flags |= (method.flags & (~MethodAttributes.MemberAccessMask));
+                               }
+
+                               return null;
+
+                       }
 
                        public override Type[] ParameterTypes {
                                get {
@@ -6016,6 +6201,28 @@ namespace Mono.CSharp {
                        {
                                return String.Concat (tc.Name, '.', method.Name);
                        }
+
+                       void CheckModifiers (TypeContainer container, int modflags)
+                        {
+                                int flags = 0;
+                                int mflags = method.ModFlags & Modifiers.Accessibility;
+
+                                if ((mflags & Modifiers.PUBLIC) != 0) {
+                                        flags |= Modifiers.PROTECTED | Modifiers.INTERNAL | Modifiers.PRIVATE;
+                                }
+                                else if ((mflags & Modifiers.PROTECTED) != 0) {
+                                        if ((mflags & Modifiers.INTERNAL) != 0)
+                                                flags |= Modifiers.PROTECTED | Modifiers.INTERNAL;
+
+                                        flags |= Modifiers.PRIVATE;
+                                }
+                                else if ((mflags & Modifiers.INTERNAL) != 0)
+                                        flags |= Modifiers.PRIVATE;
+
+                                if ((mflags == modflags) || (modflags & (~flags)) != 0)
+                                        Report.Error (273, Location, "{0}: accessibility modifier must be more restrictive than the property or indexer",
+                                                       GetSignatureForError (container));
+                        }
                }
 
                public PropertyMethod Get, Set;
@@ -6035,6 +6242,11 @@ namespace Mono.CSharp {
 
                public override void ApplyAttributeBuilder (Attribute a, CustomAttributeBuilder cb)
                {
+                       if (a.Type.IsSubclassOf (TypeManager.security_attr_type)) {
+                               a.Error_InvalidSecurityParent ();
+                               return;
+                       }
+
                        PropertyBuilder.SetCustomAttribute (cb);
                }
 
@@ -6060,6 +6272,23 @@ namespace Mono.CSharp {
                        if (!base.DoDefine (ds))
                                return false;
 
+                       //
+                       // Accessors modifiers check
+                       //
+                       if (Get.ModFlags != 0 && Set.ModFlags != 0) {
+                               Report.Error (274, Location, "'{0}': cannot specify accessibility modifiers for both accessors of the property or indexer.",
+                                               GetSignatureForError ());
+                               return false;
+                       }
+
+                       if ((Get.IsDummy || Set.IsDummy)
+                                       && (Get.ModFlags != 0 || Set.ModFlags != 0) && (ModFlags & Modifiers.OVERRIDE) == 0) {
+                               Report.Error (276, Location, 
+                                       "'{0}': accessibility modifiers on accessors may only be used if the property or indexer has both a get and a set accessor.",
+                                       GetSignatureForError ());
+                               return false;
+                       }
+
                        if (MemberType.IsAbstract && MemberType.IsSealed) {
                                Report.Error (722, Location, Error722, TypeManager.CSharpName (MemberType));
                                return false;
@@ -6108,7 +6337,7 @@ namespace Mono.CSharp {
                // TODO: rename to Resolve......
                protected override MethodInfo FindOutParentMethod (TypeContainer container, ref Type parent_ret_type)
                {
-                       PropertyInfo parent_property = container.ParentContainer.MemberCache.FindMemberToOverride (
+                       PropertyInfo parent_property = container.ParentCache.FindMemberToOverride (
                                container.TypeBuilder, Name, ParameterTypes, true) as PropertyInfo;
 
                        if (parent_property == null)
@@ -6117,6 +6346,7 @@ namespace Mono.CSharp {
                        parent_ret_type = parent_property.PropertyType;
                        MethodInfo get_accessor = parent_property.GetGetMethod (true);
                        MethodInfo set_accessor = parent_property.GetSetMethod (true);
+                       MethodAttributes get_accessor_access, set_accessor_access;
 
                        if ((ModFlags & Modifiers.OVERRIDE) != 0) {
                                if (Get != null && !Get.IsDummy && get_accessor == null) {
@@ -6130,7 +6360,34 @@ namespace Mono.CSharp {
                                }
                        }
                        
-                       return get_accessor != null ? get_accessor : set_accessor;
+                       //
+                       // Check parent accessors access
+                       //
+                       get_accessor_access = set_accessor_access = 0;
+                       if ((ModFlags & Modifiers.NEW) == 0) {
+                               if (get_accessor != null) {
+                                       MethodAttributes get_flags = Modifiers.MethodAttr (Get.ModFlags != 0 ? Get.ModFlags : ModFlags);
+                                       get_accessor_access = (get_accessor.Attributes & MethodAttributes.MemberAccessMask);
+
+                                       if (!Get.IsDummy && !CheckAccessModifiers (get_flags & MethodAttributes.MemberAccessMask, get_accessor_access, get_accessor))
+                                               Report.Error (507, Location, "'{0}' can't change the access modifiers when overriding inherited member '{1}'",
+                                                               GetSignatureForError (), TypeManager.GetFullNameSignature (parent_property));
+                               }
+
+                               if (set_accessor != null)  {
+                                       MethodAttributes set_flags = Modifiers.MethodAttr (Set.ModFlags != 0 ? Set.ModFlags : ModFlags);
+                                       set_accessor_access = (set_accessor.Attributes & MethodAttributes.MemberAccessMask);
+
+                                       if (!Set.IsDummy && !CheckAccessModifiers (set_flags & MethodAttributes.MemberAccessMask, set_accessor_access, set_accessor))
+                                               Report.Error (507, Location, "'{0}' can't change the access modifiers when overriding inherited member '{1}'",
+                                                               GetSignatureForError (container), TypeManager.GetFullNameSignature (parent_property));
+                               }
+                       }
+
+                       //
+                       // Get the less restrictive access
+                       //
+                       return get_accessor_access > set_accessor_access ? get_accessor : set_accessor;
                }
 
                public override void Emit ()
@@ -6174,6 +6431,13 @@ namespace Mono.CSharp {
                                return attribute_targets;
                        }
                }
+
+               //
+               //   Represents header string for documentation comment.
+               //
+               public override string DocCommentHeader {
+                       get { return "P:"; }
+               }
        }
                        
        public class Property : PropertyBase, IIteratorContainer {
@@ -6263,7 +6527,6 @@ namespace Mono.CSharp {
                                prop_attr |= PropertyAttributes.RTSpecialName |
                        PropertyAttributes.SpecialName;
 
-                       if (!IsExplicitImpl){
                                PropertyBuilder = Parent.TypeBuilder.DefineProperty (
                                        Name, prop_attr, MemberType, null);
                                
@@ -6274,7 +6537,6 @@ namespace Mono.CSharp {
                                        PropertyBuilder.SetSetMethod (SetBuilder);
 
                                TypeManager.RegisterProperty (PropertyBuilder, GetBuilder, SetBuilder);
-                       }
                        return true;
                }
 
@@ -6443,6 +6705,10 @@ namespace Mono.CSharp {
                {
                        Add = new AddDelegateMethod (this, add);
                        Remove = new RemoveDelegateMethod (this, remove);
+
+                       // For this event syntax we don't report error CS0067
+                       // because it is hard to do it.
+                       SetAssigned ();
                }
 
                public override string[] ValidAttributeTargets {
@@ -6458,6 +6724,7 @@ namespace Mono.CSharp {
        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,
@@ -6476,8 +6743,8 @@ namespace Mono.CSharp {
                        }
 
                        if (a.Target == AttributeTargets.Method) {
-                               AddBuilder.SetCustomAttribute (cb);
-                               RemoveBuilder.SetCustomAttribute (cb);
+                               Add.ApplyAttributeBuilder (a, cb);
+                               Remove.ApplyAttributeBuilder (a, cb);
                                return;
                        }
 
@@ -6486,7 +6753,7 @@ namespace Mono.CSharp {
 
                public override string[] ValidAttributeTargets {
                        get {
-                               return attribute_targets;
+                               return IsInterface ? attribute_targets_interface : attribute_targets;
                        }
                }
        }
@@ -6695,6 +6962,11 @@ namespace Mono.CSharp {
 
                public override void ApplyAttributeBuilder (Attribute a, CustomAttributeBuilder cb)
                {
+                       if (a.Type.IsSubclassOf (TypeManager.security_attr_type)) {
+                               a.Error_InvalidSecurityParent ();
+                               return;
+                       }
+                       
                        EventBuilder.SetCustomAttribute (cb);
                }
 
@@ -6761,12 +7033,9 @@ namespace Mono.CSharp {
                        if (RemoveBuilder == null)
                                return false;
 
-                       if (!IsExplicitImpl){
-                               EventBuilder = new MyEventBuilder (this,
-                                       Parent.TypeBuilder, Name, e_attr, MemberType);
+                       EventBuilder = new MyEventBuilder (this, Parent.TypeBuilder, Name, e_attr, MemberType);
                                        
-                               if (Add.Block == null && Remove.Block == null &&
-                                   !IsInterface) {
+                       if (Add.Block == null && Remove.Block == null && !IsInterface) {
                                        FieldBuilder = Parent.TypeBuilder.DefineField (
                                                Name, MemberType,
                                                FieldAttributes.Private | ((ModFlags & Modifiers.STATIC) != 0 ? FieldAttributes.Static : 0));
@@ -6779,8 +7048,6 @@ namespace Mono.CSharp {
                                EventBuilder.SetRemoveOnMethod (RemoveBuilder);
 
                                TypeManager.RegisterEvent (EventBuilder, AddBuilder, RemoveBuilder);
-                       }
-                       
                        return true;
                }
 
@@ -6823,6 +7090,13 @@ namespace Mono.CSharp {
 
                        return TypeManager.GetFullNameSignature (EventBuilder);
                }
+
+               //
+               //   Represents header string for documentation comment.
+               //
+               public override string DocCommentHeader {
+                       get { return "E:"; }
+               }
        }
 
  
@@ -6955,22 +7229,29 @@ namespace Mono.CSharp {
                                return false;
 
                        if (OptAttributes != null) {
-                               Attribute indexer_attr = OptAttributes.GetIndexerNameAttribute (ec);
+                               Attribute indexer_attr = OptAttributes.Search (TypeManager.indexer_name_type, ec);
                                if (indexer_attr != null) {
+                                       // Remove the attribute from the list because it is not emitted
+                                       OptAttributes.Attrs.Remove (indexer_attr);
+
                                        ShortName = indexer_attr.GetIndexerAttributeValue (ec);
 
                                        if (IsExplicitImpl) {
-                                               Report.Error (415, indexer_attr.Location, "The 'IndexerName' attribute is valid only on an indexer that is not an explicit interface member declaration");
+                                               Report.Error (415, indexer_attr.Location,
+                                                             "The 'IndexerName' attribute is valid only on an" +
+                                                             "indexer that is not an explicit interface member declaration");
                                                return false;
                                        }
                                
                                        if ((ModFlags & Modifiers.OVERRIDE) != 0) {
-                                               Report.Error (609, indexer_attr.Location, "Cannot set the 'IndexerName' attribute on an indexer marked override");
+                                               Report.Error (609, indexer_attr.Location,
+                                                             "Cannot set the 'IndexerName' attribute on an indexer marked override");
                                                return false;
                                        }
 
                                        if (!Tokenizer.IsValidIdentifier (ShortName)) {
-                                               Report.Error (633, indexer_attr.Location, "The argument to the 'IndexerName' attribute must be a valid identifier");
+                                               Report.Error (633, indexer_attr.Location,
+                                                             "The argument to the 'IndexerName' attribute must be a valid identifier");
                                                return false;
                                        }
 
@@ -7039,15 +7320,8 @@ namespace Mono.CSharp {
                                }
                        }
 
-                       //
-                       // Define the PropertyBuilder if one of the following conditions are met:
-                       // a) we're not implementing an interface indexer.
-                       // b) the indexer has a different IndexerName and this is no
-                       //    explicit interface implementation.
-                       //
-                       if (!IsExplicitImpl) {
                                PropertyBuilder = Parent.TypeBuilder.DefineProperty (
-                                       ShortName, prop_attr, MemberType, ParameterTypes);
+                               Name, prop_attr, MemberType, ParameterTypes);
 
                                if (!Get.IsDummy)
                                        PropertyBuilder.SetGetMethod (GetBuilder);
@@ -7055,9 +7329,7 @@ namespace Mono.CSharp {
                                if (!Set.IsDummy)
                                        PropertyBuilder.SetSetMethod (SetBuilder);
                                
-                               TypeManager.RegisterIndexer (PropertyBuilder, GetBuilder, SetBuilder,
-                                                            ParameterTypes);
-                       }
+                       TypeManager.RegisterIndexer (PropertyBuilder, GetBuilder, SetBuilder, ParameterTypes);
 
                        return true;
                }