d1aedad9971215c790a12e6adb52a332cdd52c79
[mono.git] / mcs / mcs / class.cs
1 //
2 // class.cs: Class and Struct handlers
3 //
4 // Authors: Miguel de Icaza (miguel@gnu.org)
5 //          Martin Baulig (martin@ximian.com)
6 //          Marek Safar (marek.safar@gmail.com)
7 //
8 // Dual licensed under the terms of the MIT X11 or GNU GPL
9 //
10 // Copyright 2001, 2002, 2003 Ximian, Inc (http://www.ximian.com)
11 // Copyright 2004-2011 Novell, Inc
12 // Copyright 2011 Xamarin, Inc (http://www.xamarin.com)
13 //
14
15 using System;
16 using System.Linq;
17 using System.Collections.Generic;
18 using System.Runtime.InteropServices;
19 using System.Security;
20 using System.Security.Permissions;
21 using System.Text;
22 using System.Diagnostics;
23 using Mono.CompilerServices.SymbolWriter;
24
25 #if MOBILE
26 using XmlElement = System.Object;
27 #endif
28
29 #if STATIC
30 using SecurityType = System.Collections.Generic.List<IKVM.Reflection.Emit.CustomAttributeBuilder>;
31 using IKVM.Reflection;
32 using IKVM.Reflection.Emit;
33 #else
34 using SecurityType = System.Collections.Generic.Dictionary<System.Security.Permissions.SecurityAction, System.Security.PermissionSet>;
35 using System.Reflection;
36 using System.Reflection.Emit;
37 #endif
38
39 namespace Mono.CSharp
40 {
41         //
42         // General types container, used as a base class for all constructs which can hold types
43         //
44         public abstract class TypeContainer : MemberCore
45         {
46                 public readonly MemberKind Kind;
47
48                 protected List<TypeContainer> containers;
49
50                 TypeDefinition main_container;
51
52                 protected Dictionary<string, MemberCore> defined_names;
53
54                 protected bool is_defined;
55
56                 public int CounterAnonymousMethods { get; set; }
57                 public int CounterAnonymousContainers { get; set; }
58                 public int CounterSwitchTypes { get; set; }
59
60                 protected TypeContainer (TypeContainer parent, MemberName name, Attributes attrs, MemberKind kind)
61                         : base (parent, name, attrs)
62                 {
63                         this.Kind = kind;
64                         defined_names = new Dictionary<string, MemberCore> ();
65                 }
66
67                 public override TypeSpec CurrentType {
68                         get {
69                                 return null;
70                         }
71                 }
72
73                 public Dictionary<string, MemberCore> DefinedNames {
74                         get {
75                                 return defined_names;
76                         }
77                 }
78
79                 public TypeDefinition PartialContainer {
80                         get {
81                                 return main_container;
82                         }
83                         protected set {
84                                 main_container = value;
85                         }
86                 }
87
88                 public IList<TypeContainer> Containers {
89                         get {
90                                 return containers;
91                         }
92                 }
93
94                 //
95                 // Any unattached attributes during parsing get added here. Used
96                 // by FULL_AST mode
97                 //
98                 public Attributes UnattachedAttributes {
99                         get; set;
100                 }
101
102                 public void AddCompilerGeneratedClass (CompilerGeneratedContainer c)
103                 {
104                         AddTypeContainerMember (c);
105                 }
106
107                 public virtual void AddPartial (TypeDefinition next_part)
108                 {
109                         MemberCore mc;
110                         (PartialContainer ?? this).defined_names.TryGetValue (next_part.MemberName.Basename, out mc);
111
112                         AddPartial (next_part, mc as TypeDefinition);
113                 }
114
115                 protected void AddPartial (TypeDefinition next_part, TypeDefinition existing)
116                 {
117                         next_part.ModFlags |= Modifiers.PARTIAL;
118
119                         if (existing == null) {
120                                 AddTypeContainer (next_part);
121                                 return;
122                         }
123
124                         if ((existing.ModFlags & Modifiers.PARTIAL) == 0) {
125                                 if (existing.Kind != next_part.Kind) {
126                                         AddTypeContainer (next_part);
127                                 } else {
128                                         Report.SymbolRelatedToPreviousError (next_part);
129                                         Error_MissingPartialModifier (existing);
130                                 }
131
132                                 return;
133                         }
134
135                         if (existing.Kind != next_part.Kind) {
136                                 Report.SymbolRelatedToPreviousError (existing);
137                                 Report.Error (261, next_part.Location,
138                                         "Partial declarations of `{0}' must be all classes, all structs or all interfaces",
139                                         next_part.GetSignatureForError ());
140                         }
141
142                         if ((existing.ModFlags & Modifiers.AccessibilityMask) != (next_part.ModFlags & Modifiers.AccessibilityMask) &&
143                                 ((existing.ModFlags & Modifiers.DEFAULT_ACCESS_MODIFIER) == 0 &&
144                                  (next_part.ModFlags & Modifiers.DEFAULT_ACCESS_MODIFIER) == 0)) {
145                                          Report.SymbolRelatedToPreviousError (existing);
146                                 Report.Error (262, next_part.Location,
147                                         "Partial declarations of `{0}' have conflicting accessibility modifiers",
148                                         next_part.GetSignatureForError ());
149                         }
150
151                         var tc_names = existing.CurrentTypeParameters;
152                         if (tc_names != null) {
153                                 for (int i = 0; i < tc_names.Count; ++i) {
154                                         var tp = next_part.MemberName.TypeParameters[i];
155                                         if (tc_names[i].MemberName.Name != tp.MemberName.Name) {
156                                                 Report.SymbolRelatedToPreviousError (existing.Location, "");
157                                                 Report.Error (264, next_part.Location, "Partial declarations of `{0}' must have the same type parameter names in the same order",
158                                                         next_part.GetSignatureForError ());
159                                                 break;
160                                         }
161
162                                         if (tc_names[i].Variance != tp.Variance) {
163                                                 Report.SymbolRelatedToPreviousError (existing.Location, "");
164                                                 Report.Error (1067, next_part.Location, "Partial declarations of `{0}' must have the same type parameter variance modifiers",
165                                                         next_part.GetSignatureForError ());
166                                                 break;
167                                         }
168                                 }
169                         }
170
171                         if ((next_part.ModFlags & Modifiers.DEFAULT_ACCESS_MODIFIER) != 0) {
172                                 existing.ModFlags |= next_part.ModFlags & ~(Modifiers.DEFAULT_ACCESS_MODIFIER | Modifiers.AccessibilityMask);
173                         } else if ((existing.ModFlags & Modifiers.DEFAULT_ACCESS_MODIFIER) != 0) {
174                                 existing.ModFlags &= ~(Modifiers.DEFAULT_ACCESS_MODIFIER | Modifiers.AccessibilityMask);
175                                 existing.ModFlags |= next_part.ModFlags;
176                         } else {
177                                 existing.ModFlags |= next_part.ModFlags;
178                         }
179
180                         existing.Definition.Modifiers = existing.ModFlags;
181
182                         if (next_part.attributes != null) {
183                                 if (existing.attributes == null)
184                                         existing.attributes = next_part.attributes;
185                                 else
186                                         existing.attributes.AddAttributes (next_part.attributes.Attrs);
187                         }
188
189                         next_part.PartialContainer = existing;
190
191                         existing.AddPartialPart (next_part);
192
193                         AddTypeContainerMember (next_part);
194                 }
195
196                 public virtual void AddTypeContainer (TypeContainer tc)
197                 {
198                         AddTypeContainerMember (tc);
199
200                         var tparams = tc.MemberName.TypeParameters;
201                         if (tparams != null && tc.PartialContainer != null) {
202                                 var td = (TypeDefinition) tc;
203                                 for (int i = 0; i < tparams.Count; ++i) {
204                                         var tp = tparams[i];
205                                         if (tp.MemberName == null)
206                                                 continue;
207
208                                         td.AddNameToContainer (tp, tp.Name);
209                                 }
210                         }
211                 }
212
213                 protected virtual void AddTypeContainerMember (TypeContainer tc)
214                 {
215                         containers.Add (tc);
216                 }
217
218                 public virtual void CloseContainer ()
219                 {
220                         if (containers != null) {
221                                 foreach (TypeContainer tc in containers) {
222                                         tc.CloseContainer ();
223                                 }
224                         }
225                 }
226
227                 public virtual void CreateMetadataName (StringBuilder sb)
228                 {
229                         if (Parent != null && Parent.MemberName != null)
230                                 Parent.CreateMetadataName (sb);
231
232                         MemberName.CreateMetadataName (sb);
233                 }
234
235                 public virtual bool CreateContainer ()
236                 {
237                         if (containers != null) {
238                                 foreach (TypeContainer tc in containers) {
239                                         tc.CreateContainer ();
240                                 }
241                         }
242
243                         return true;
244                 }
245
246                 public override bool Define ()
247                 {
248                         if (containers != null) {
249                                 foreach (TypeContainer tc in containers) {
250                                         tc.Define ();
251                                 }
252                         }
253
254                         // Release cache used by parser only
255                         if (Module.Evaluator == null) {
256                                 defined_names = null;
257                         } else {
258                                 defined_names.Clear ();
259                         }
260
261                         return true;
262                 }
263
264                 public virtual void PrepareEmit ()
265                 {
266                         if (containers != null) {
267                                 foreach (var t in containers) {
268                                         try {
269                                                 t.PrepareEmit ();
270                                         } catch (Exception e) {
271                                                 if (MemberName == MemberName.Null)
272                                                         throw;
273
274                                                 throw new InternalErrorException (t, e);
275                                         }
276                                 }
277                         }
278                 }
279
280                 public virtual bool DefineContainer ()
281                 {
282                         if (is_defined)
283                                 return true;
284
285                         is_defined = true;
286
287                         DoDefineContainer ();
288
289                         if (containers != null) {
290                                 foreach (TypeContainer tc in containers) {
291                                         try {
292                                                 tc.DefineContainer ();
293                                         } catch (Exception e) {
294                                                 if (MemberName == MemberName.Null)
295                                                         throw;
296
297                                                 throw new InternalErrorException (tc, e);
298                                         }
299                                 }
300
301                                 if (PartialContainer != null && PartialContainer != this) {
302                                         containers = null;
303                                 }
304                         }
305
306                         return true;
307                 }
308
309                 public virtual void ExpandBaseInterfaces ()
310                 {
311                         if (containers != null) {
312                                 foreach (TypeContainer tc in containers) {
313                                         tc.ExpandBaseInterfaces ();
314                                 }
315                         }
316                 }
317
318                 protected virtual void DefineNamespace ()
319                 {
320                         if (containers != null) {
321                                 foreach (var tc in containers) {
322                                         try {
323                                                 tc.DefineNamespace ();
324                                         } catch (Exception e) {
325                                                 throw new InternalErrorException (tc, e);
326                                         }
327                                 }
328                         }
329                 }
330
331                 protected virtual void DoDefineContainer ()
332                 {
333                 }
334
335                 public virtual void EmitContainer ()
336                 {
337                         if (containers != null) {
338                                 for (int i = 0; i < containers.Count; ++i)
339                                         containers[i].EmitContainer ();
340                         }
341                 }
342
343                 protected void Error_MissingPartialModifier (MemberCore type)
344                 {
345                         Report.Error (260, type.Location,
346                                 "Missing partial modifier on declaration of type `{0}'. Another partial declaration of this type exists",
347                                 type.GetSignatureForError ());
348                 }
349
350                 public override string GetSignatureForDocumentation ()
351                 {
352                         if (Parent != null && Parent.MemberName != null)
353                                 return Parent.GetSignatureForDocumentation () + "." + MemberName.GetSignatureForDocumentation ();
354
355                         return MemberName.GetSignatureForDocumentation ();
356                 }
357
358                 public override string GetSignatureForError ()
359                 {
360                         if (Parent != null && Parent.MemberName != null) 
361                                 return Parent.GetSignatureForError () + "." + MemberName.GetSignatureForError ();
362
363                         return MemberName.GetSignatureForError ();
364                 }
365
366                 public virtual string GetSignatureForMetadata ()
367                 {
368                         var sb = new StringBuilder ();
369                         CreateMetadataName (sb);
370                         return sb.ToString ();
371                 }
372
373                 public virtual void RemoveContainer (TypeContainer cont)
374                 {
375                         if (containers != null)
376                                 containers.Remove (cont);
377
378                         var tc = Parent == Module ? Module : this;
379                         tc.defined_names.Remove (cont.MemberName.Basename);
380                 }
381
382                 public virtual void VerifyMembers ()
383                 {
384                         if (containers != null) {
385                                 foreach (TypeContainer tc in containers)
386                                         tc.VerifyMembers ();
387                         }
388                 }
389
390                 public override void WriteDebugSymbol (MonoSymbolFile file)
391                 {
392                         if (containers != null) {
393                                 foreach (TypeContainer tc in containers) {
394                                         tc.WriteDebugSymbol (file);
395                                 }
396                         }
397                 }
398         }
399
400         public abstract class TypeDefinition : TypeContainer, ITypeDefinition
401         {
402                 //
403                 // Different context is needed when resolving type container base
404                 // types. Type names come from the parent scope but type parameter
405                 // names from the container scope.
406                 //
407                 public struct BaseContext : IMemberContext
408                 {
409                         TypeContainer tc;
410
411                         public BaseContext (TypeContainer tc)
412                         {
413                                 this.tc = tc;
414                         }
415
416                         #region IMemberContext Members
417
418                         public CompilerContext Compiler {
419                                 get { return tc.Compiler; }
420                         }
421
422                         public TypeSpec CurrentType {
423                                 get { return tc.PartialContainer.CurrentType; }
424                         }
425
426                         public TypeParameters CurrentTypeParameters {
427                                 get { return tc.PartialContainer.CurrentTypeParameters; }
428                         }
429
430                         public MemberCore CurrentMemberDefinition {
431                                 get { return tc; }
432                         }
433
434                         public bool IsObsolete {
435                                 get { return tc.IsObsolete; }
436                         }
437
438                         public bool IsUnsafe {
439                                 get { return tc.IsUnsafe; }
440                         }
441
442                         public bool IsStatic {
443                                 get { return tc.IsStatic; }
444                         }
445
446                         public ModuleContainer Module {
447                                 get { return tc.Module; }
448                         }
449
450                         public string GetSignatureForError ()
451                         {
452                                 return tc.GetSignatureForError ();
453                         }
454
455                         public ExtensionMethodCandidates LookupExtensionMethod (string name, int arity)
456                         {
457                                 return null;
458                         }
459
460                         public FullNamedExpression LookupNamespaceAlias (string name)
461                         {
462                                 return tc.Parent.LookupNamespaceAlias (name);
463                         }
464
465                         public FullNamedExpression LookupNamespaceOrType (string name, int arity, LookupMode mode, Location loc)
466                         {
467                                 if (arity == 0) {
468                                         var tp = CurrentTypeParameters;
469                                         if (tp != null) {
470                                                 TypeParameter t = tp.Find (name);
471                                                 if (t != null)
472                                                         return new TypeParameterExpr (t, loc);
473                                         }
474                                 }
475
476                                 return tc.Parent.LookupNamespaceOrType (name, arity, mode, loc);
477                         }
478
479                         #endregion
480                 }
481
482                 [Flags]
483                 enum CachedMethods
484                 {
485                         Equals                          = 1,
486                         GetHashCode                     = 1 << 1,
487                         HasStaticFieldInitializer       = 1 << 2
488                 }
489
490                 readonly List<MemberCore> members;
491
492                 // Holds a list of fields that have initializers
493                 protected List<FieldInitializer> initialized_fields;
494
495                 // Holds a list of static fields that have initializers
496                 protected List<FieldInitializer> initialized_static_fields;
497
498                 Dictionary<MethodSpec, Method> hoisted_base_call_proxies;
499
500                 Dictionary<string, FullNamedExpression> Cache = new Dictionary<string, FullNamedExpression> ();
501
502                 //
503                 // Points to the first non-static field added to the container.
504                 //
505                 // This is an arbitrary choice.  We are interested in looking at _some_ non-static field,
506                 // and the first one's as good as any.
507                 //
508                 protected FieldBase first_nonstatic_field;
509
510                 //
511                 // This one is computed after we can distinguish interfaces
512                 // from classes from the arraylist `type_bases' 
513                 //
514                 protected TypeSpec base_type;
515                 FullNamedExpression base_type_expr;     // TODO: It's temporary variable
516                 protected TypeSpec[] iface_exprs;
517
518                 protected List<FullNamedExpression> type_bases;
519
520                 // Partial parts for classes only
521                 List<TypeDefinition> class_partial_parts;
522
523                 TypeDefinition InTransit;
524
525                 public TypeBuilder TypeBuilder;
526                 GenericTypeParameterBuilder[] all_tp_builders;
527                 //
528                 // All recursive type parameters put together sharing same
529                 // TypeParameter instances
530                 //
531                 TypeParameters all_type_parameters;
532
533                 public const string DefaultIndexerName = "Item";
534
535                 bool has_normal_indexers;
536                 string indexer_name;
537                 bool error;
538                 bool members_defined;
539                 bool members_defined_ok;
540                 protected bool has_static_constructor;
541
542                 private CachedMethods cached_method;
543
544                 protected TypeSpec spec;
545                 TypeSpec current_type;
546
547                 public int DynamicSitesCounter;
548                 public int AnonymousMethodsCounter;
549                 public int MethodGroupsCounter;
550
551                 static readonly string[] attribute_targets = new [] { "type" };
552                 static readonly string[] attribute_targets_primary = new [] { "type", "method" };
553
554                 /// <remarks>
555                 ///  The pending methods that need to be implemented
556                 //   (interfaces or abstract methods)
557                 /// </remarks>
558                 PendingImplementation pending;
559
560                 protected TypeDefinition (TypeContainer parent, MemberName name, Attributes attrs, MemberKind kind)
561                         : base (parent, name, attrs, kind)
562                 {
563                         PartialContainer = this;
564                         members = new List<MemberCore> ();
565                 }
566
567                 #region Properties
568
569                 public List<FullNamedExpression> BaseTypeExpressions {
570                         get {
571                                 return type_bases;
572                         }
573                 }
574
575                 public override TypeSpec CurrentType {
576                         get {
577                                 if (current_type == null) {
578                                         if (IsGenericOrParentIsGeneric) {
579                                                 //
580                                                 // Switch to inflated version as it's used by all expressions
581                                                 //
582                                                 var targs = CurrentTypeParameters == null ? TypeSpec.EmptyTypes : CurrentTypeParameters.Types;
583                                                 current_type = spec.MakeGenericType (this, targs);
584                                         } else {
585                                                 current_type = spec;
586                                         }
587                                 }
588
589                                 return current_type;
590                         }
591                 }
592
593                 public override TypeParameters CurrentTypeParameters {
594                         get {
595                                 return PartialContainer.MemberName.TypeParameters;
596                         }
597                 }
598
599                 int CurrentTypeParametersStartIndex {
600                         get {
601                                 int total = all_tp_builders.Length;
602                                 if (CurrentTypeParameters != null) {
603                                         return total - CurrentTypeParameters.Count;
604                                 }
605                                 return total;
606                         }
607                 }
608
609                 public virtual AssemblyDefinition DeclaringAssembly {
610                         get {
611                                 return Module.DeclaringAssembly;
612                         }
613                 }
614
615                 IAssemblyDefinition ITypeDefinition.DeclaringAssembly {
616                         get {
617                                 return Module.DeclaringAssembly;
618                         }
619                 }
620
621                 public TypeSpec Definition {
622                         get {
623                                 return spec;
624                         }
625                 }
626
627                 public bool HasMembersDefined {
628                         get {
629                                 return members_defined;
630                         }
631                 }
632
633                 public bool HasInstanceConstructor {
634                         get {
635                                 return (caching_flags & Flags.HasInstanceConstructor) != 0;
636                         }
637                         set {
638                                 caching_flags |= Flags.HasInstanceConstructor;
639                         }
640                 }
641
642                 public bool HasInstanceField {
643                         get {
644                                 return (caching_flags & Flags.HasInstanceField) != 0;
645                         }
646                         set {
647                                 caching_flags |= Flags.HasInstanceField;
648                         }
649                 }
650
651                 // Indicated whether container has StructLayout attribute set Explicit
652                 public bool HasExplicitLayout {
653                         get { return (caching_flags & Flags.HasExplicitLayout) != 0; }
654                         set { caching_flags |= Flags.HasExplicitLayout; }
655                 }
656
657                 public bool HasOperators {
658                         get {
659                                 return (caching_flags & Flags.HasUserOperators) != 0;
660                         }
661                         set {
662                                 caching_flags |= Flags.HasUserOperators;
663                         }
664                 }
665
666                 public bool HasStructLayout {
667                         get { return (caching_flags & Flags.HasStructLayout) != 0; }
668                         set { caching_flags |= Flags.HasStructLayout; }
669                 }
670
671                 public TypeSpec[] Interfaces {
672                         get {
673                                 return iface_exprs;
674                         }
675                 }
676
677                 public bool IsGenericOrParentIsGeneric {
678                         get {
679                                 return all_type_parameters != null;
680                         }
681                 }
682
683                 public bool IsTopLevel {
684                         get {
685                                 return !(Parent is TypeDefinition);
686                         }
687                 }
688
689                 public bool IsPartial {
690                         get {
691                                 return (ModFlags & Modifiers.PARTIAL) != 0;
692                         }
693                 }
694
695                 bool ITypeDefinition.IsTypeForwarder {
696                         get {
697                                 return false;
698                         }
699                 }
700
701                 bool ITypeDefinition.IsCyclicTypeForwarder {
702                         get {
703                                 return false;
704                         }
705                 }
706
707                 //
708                 // Returns true for secondary partial containers
709                 //
710                 bool IsPartialPart {
711                         get {
712                                 return PartialContainer != this;
713                         }
714                 }
715
716                 public MemberCache MemberCache {
717                         get {
718                                 return spec.MemberCache;
719                         }
720                 }
721
722                 public List<MemberCore> Members {
723                         get {
724                                 return members;
725                         }
726                 }
727
728                 string ITypeDefinition.Namespace {
729                         get {
730                                 var p = Parent;
731                                 while (p.Kind != MemberKind.Namespace)
732                                         p = p.Parent;
733
734                                 return p.MemberName == null ? null : p.GetSignatureForError ();
735                         }
736                 }
737
738                 public ParametersCompiled PrimaryConstructorParameters { get; set; }
739
740                 public Arguments PrimaryConstructorBaseArguments { get; set; }
741
742                 public Location PrimaryConstructorBaseArgumentsStart { get; set; }
743
744                 public TypeParameters TypeParametersAll {
745                         get {
746                                 return all_type_parameters;
747                         }
748                 }
749
750                 public override string[] ValidAttributeTargets {
751                         get {
752                                 return PrimaryConstructorParameters != null ? attribute_targets_primary : attribute_targets;
753                         }
754                 }
755
756                 #endregion
757
758                 public override void Accept (StructuralVisitor visitor)
759                 {
760                         visitor.Visit (this);
761                 }
762
763                 public void AddMember (MemberCore symbol)
764                 {
765                         if (symbol.MemberName.ExplicitInterface != null) {
766                                 if (!(Kind == MemberKind.Class || Kind == MemberKind.Struct)) {
767                                         Report.Error (541, symbol.Location,
768                                                 "`{0}': explicit interface declaration can only be declared in a class or struct",
769                                                 symbol.GetSignatureForError ());
770                                 }
771                         }
772
773                         AddNameToContainer (symbol, symbol.MemberName.Name);
774                         members.Add (symbol);
775                 }
776
777                 public override void AddTypeContainer (TypeContainer tc)
778                 {
779                         AddNameToContainer (tc, tc.MemberName.Basename);
780
781                         base.AddTypeContainer (tc);
782                 }
783
784                 protected override void AddTypeContainerMember (TypeContainer tc)
785                 {
786                         members.Add (tc);
787
788                         if (containers == null)
789                                 containers = new List<TypeContainer> ();
790
791                         base.AddTypeContainerMember (tc);
792                 }
793
794                 //
795                 // Adds the member to defined_names table. It tests for duplications and enclosing name conflicts
796                 //
797                 public virtual void AddNameToContainer (MemberCore symbol, string name)
798                 {
799                         if (((ModFlags | symbol.ModFlags) & Modifiers.COMPILER_GENERATED) != 0)
800                                 return;
801
802                         MemberCore mc;
803                         if (!PartialContainer.defined_names.TryGetValue (name, out mc)) {
804                                 PartialContainer.defined_names.Add (name, symbol);
805                                 return;
806                         }
807
808                         if (symbol.EnableOverloadChecks (mc))
809                                 return;
810
811                         InterfaceMemberBase im = mc as InterfaceMemberBase;
812                         if (im != null && im.IsExplicitImpl)
813                                 return;
814
815                         Report.SymbolRelatedToPreviousError (mc);
816                         if ((mc.ModFlags & Modifiers.PARTIAL) != 0 && (symbol is ClassOrStruct || symbol is Interface)) {
817                                 Error_MissingPartialModifier (symbol);
818                                 return;
819                         }
820
821                         if (symbol is TypeParameter) {
822                                 Report.Error (692, symbol.Location,
823                                         "Duplicate type parameter `{0}'", symbol.GetSignatureForError ());
824                         } else {
825                                 Report.Error (102, symbol.Location,
826                                         "The type `{0}' already contains a definition for `{1}'",
827                                         GetSignatureForError (), name);
828                         }
829
830                         return;
831                 }
832         
833                 public void AddConstructor (Constructor c)
834                 {
835                         AddConstructor (c, false);
836                 }
837
838                 public void AddConstructor (Constructor c, bool isDefault)
839                 {
840                         bool is_static = (c.ModFlags & Modifiers.STATIC) != 0;
841                         if (!isDefault)
842                                 AddNameToContainer (c, is_static ? Constructor.TypeConstructorName : Constructor.ConstructorName);
843
844                         if (is_static && c.ParameterInfo.IsEmpty) {
845                                 PartialContainer.has_static_constructor = true;
846                         } else {
847                                 PartialContainer.HasInstanceConstructor = true;
848                         }
849
850                         members.Add (c);
851                 }
852
853                 public bool AddField (FieldBase field)
854                 {
855                         AddMember (field);
856
857                         if ((field.ModFlags & Modifiers.STATIC) != 0)
858                                 return true;
859
860                         if (!PartialContainer.HasInstanceField) {
861                                 PartialContainer.HasInstanceField = true;
862                                 PartialContainer.first_nonstatic_field = field;
863                                 return true;
864                         }
865
866                         if (Kind == MemberKind.Struct) {
867                                 var first_field = PartialContainer.first_nonstatic_field;
868                                 if (first_field.Parent != field.Parent) {
869                                         Report.SymbolRelatedToPreviousError (first_field.Parent);
870                                         Report.Warning (282, 3, field.Location,
871                                                 "struct instance field `{0}' found in different declaration from instance field `{1}'",
872                                                 field.GetSignatureForError (), first_field.GetSignatureForError ());
873                                 }
874                         }
875
876                         return true;
877                 }
878
879                 /// <summary>
880                 /// Indexer has special handling in constrast to other AddXXX because the name can be driven by IndexerNameAttribute
881                 /// </summary>
882                 public void AddIndexer (Indexer i)
883                 {
884                         members.Add (i);
885                 }
886
887                 public void AddOperator (Operator op)
888                 {
889                         PartialContainer.HasOperators = true;
890                         AddMember (op);
891                 }
892
893                 public void AddPartialPart (TypeDefinition part)
894                 {
895                         if (Kind != MemberKind.Class)
896                                 return;
897
898                         if (class_partial_parts == null)
899                                 class_partial_parts = new List<TypeDefinition> ();
900
901                         class_partial_parts.Add (part);
902                 }
903
904                 public override void ApplyAttributeBuilder (Attribute a, MethodSpec ctor, byte[] cdata, PredefinedAttributes pa)
905                 {
906                         if (a.Target == AttributeTargets.Method) {
907                                 foreach (var m in members) {
908                                         var c = m as Constructor;
909                                         if (c == null)
910                                                 continue;
911
912                                         if (c.IsPrimaryConstructor) {
913                                                 c.ApplyAttributeBuilder (a, ctor, cdata, pa);
914                                                 return;
915                                         }
916                                 }
917
918                                 throw new InternalErrorException ();
919                         }
920
921                         if (has_normal_indexers && a.Type == pa.DefaultMember) {
922                                 Report.Error (646, a.Location, "Cannot specify the `DefaultMember' attribute on type containing an indexer");
923                                 return;
924                         }
925
926                         if (a.Type == pa.Required) {
927                                 Report.Error (1608, a.Location, "The RequiredAttribute attribute is not permitted on C# types");
928                                 return;
929                         }
930
931                         TypeBuilder.SetCustomAttribute ((ConstructorInfo) ctor.GetMetaInfo (), cdata);
932                 } 
933
934                 public override AttributeTargets AttributeTargets {
935                         get {
936                                 throw new NotSupportedException ();
937                         }
938                 }
939
940                 public TypeSpec BaseType {
941                         get {
942                                 return spec.BaseType;
943                         }
944                 }
945
946                 protected virtual TypeAttributes TypeAttr {
947                         get {
948                                 return ModifiersExtensions.TypeAttr (ModFlags, IsTopLevel);
949                         }
950                 }
951
952                 public int TypeParametersCount {
953                         get {
954                                 return MemberName.Arity;
955                         }
956                 }
957
958                 TypeParameterSpec[] ITypeDefinition.TypeParameters {
959                         get {
960                                 var ctp = PartialContainer.CurrentTypeParameters;
961                                 return ctp == null ? TypeParameterSpec.EmptyTypes : ctp.Types;
962                         }
963                 }
964
965                 public string GetAttributeDefaultMember ()
966                 {
967                         return indexer_name ?? DefaultIndexerName;
968                 }
969
970                 public bool IsComImport {
971                         get {
972                                 if (OptAttributes == null)
973                                         return false;
974
975                                 return OptAttributes.Contains (Module.PredefinedAttributes.ComImport);
976                         }
977                 }
978
979                 public void RegisterFieldForInitialization (MemberCore field, FieldInitializer expression)
980                 {
981                         if (IsPartialPart)
982                                 PartialContainer.RegisterFieldForInitialization (field, expression);
983
984                         if ((field.ModFlags & Modifiers.STATIC) != 0){
985                                 if (initialized_static_fields == null) {
986                                         HasStaticFieldInitializer = true;
987                                         initialized_static_fields = new List<FieldInitializer> (4);
988                                 }
989
990                                 initialized_static_fields.Add (expression);
991                         } else {
992                                 if (Kind == MemberKind.Struct) {
993                                         if (Compiler.Settings.Version != LanguageVersion.Experimental) {
994                                                 Report.Error (573, expression.Location, "'{0}': Structs cannot have instance property or field initializers",
995                                                         GetSignatureForError ());
996                                         }
997                                 }
998
999                                 if (initialized_fields == null)
1000                                         initialized_fields = new List<FieldInitializer> (4);
1001
1002                                 initialized_fields.Add (expression);
1003                         }
1004                 }
1005
1006                 public void ResolveFieldInitializers (BlockContext ec)
1007                 {
1008                         Debug.Assert (!IsPartialPart);
1009
1010                         if (ec.IsStatic) {
1011                                 if (initialized_static_fields == null)
1012                                         return;
1013
1014                                 bool has_complex_initializer = !ec.Module.Compiler.Settings.Optimize;
1015                                 int i;
1016                                 ExpressionStatement [] init = new ExpressionStatement [initialized_static_fields.Count];
1017                                 for (i = 0; i < initialized_static_fields.Count; ++i) {
1018                                         FieldInitializer fi = initialized_static_fields [i];
1019                                         ExpressionStatement s = fi.ResolveStatement (ec);
1020                                         if (s == null) {
1021                                                 s = EmptyExpressionStatement.Instance;
1022                                         } else if (!fi.IsSideEffectFree) {
1023                                                 has_complex_initializer = true;
1024                                         }
1025
1026                                         init [i] = s;
1027                                 }
1028
1029                                 for (i = 0; i < initialized_static_fields.Count; ++i) {
1030                                         FieldInitializer fi = initialized_static_fields [i];
1031                                         //
1032                                         // Need special check to not optimize code like this
1033                                         // static int a = b = 5;
1034                                         // static int b = 0;
1035                                         //
1036                                         if (!has_complex_initializer && fi.IsDefaultInitializer)
1037                                                 continue;
1038
1039                                         ec.AssignmentInfoOffset += fi.AssignmentOffset;
1040                                         ec.CurrentBlock.AddScopeStatement (new StatementExpression (init [i]));
1041                                 }
1042
1043                                 return;
1044                         }
1045
1046                         if (initialized_fields == null)
1047                                 return;
1048
1049                         for (int i = 0; i < initialized_fields.Count; ++i) {
1050                                 FieldInitializer fi = initialized_fields [i];
1051
1052                                 //
1053                                 // Clone before resolving otherwise when field initializer is needed
1054                                 // in more than 1 constructor any resolve after the initial one would
1055                                 // only took the resolved expression which is problem for expressions
1056                                 // that generate extra expressions or code during Resolve phase
1057                                 //
1058                                 var cloned = fi.Clone (new CloneContext ());
1059
1060                                 ExpressionStatement s = fi.ResolveStatement (ec);
1061                                 if (s == null) {
1062                                         initialized_fields [i] = new FieldInitializer (fi.Field, ErrorExpression.Instance, Location.Null);
1063                                         continue;
1064                                 }
1065
1066                                 //
1067                                 // Field is re-initialized to its default value => removed
1068                                 //
1069                                 if (fi.IsDefaultInitializer && Kind != MemberKind.Struct && ec.Module.Compiler.Settings.Optimize)
1070                                         continue;
1071
1072                                 ec.AssignmentInfoOffset += fi.AssignmentOffset;
1073                                 ec.CurrentBlock.AddScopeStatement (new StatementExpression (s));
1074                                 initialized_fields [i] = (FieldInitializer) cloned;
1075                         }
1076                 }
1077
1078                 public override string DocComment {
1079                         get {
1080                                 return comment;
1081                         }
1082                         set {
1083                                 if (value == null)
1084                                         return;
1085
1086                                 comment += value;
1087                         }
1088                 }
1089
1090                 public PendingImplementation PendingImplementations {
1091                         get { return pending; }
1092                 }
1093
1094                 internal override void GenerateDocComment (DocumentationBuilder builder)
1095                 {
1096                         if (IsPartialPart)
1097                                 return;
1098
1099                         base.GenerateDocComment (builder);
1100
1101                         foreach (var member in members)
1102                                 member.GenerateDocComment (builder);
1103                 }
1104
1105                 public TypeSpec GetAttributeCoClass ()
1106                 {
1107                         if (OptAttributes == null)
1108                                 return null;
1109
1110                         Attribute a = OptAttributes.Search (Module.PredefinedAttributes.CoClass);
1111                         if (a == null)
1112                                 return null;
1113
1114                         return a.GetCoClassAttributeValue ();
1115                 }
1116
1117                 public AttributeUsageAttribute GetAttributeUsage (PredefinedAttribute pa)
1118                 {
1119                         Attribute a = null;
1120                         if (OptAttributes != null) {
1121                                 a = OptAttributes.Search (pa);
1122                         }
1123
1124                         if (a == null)
1125                                 return null;
1126
1127                         return a.GetAttributeUsageAttribute ();
1128                 }
1129
1130                 public virtual CompilationSourceFile GetCompilationSourceFile ()
1131                 {
1132                         TypeContainer ns = Parent;
1133                         while (true) {
1134                                 var sf = ns as CompilationSourceFile;
1135                                 if (sf != null)
1136                                         return sf;
1137
1138                                 ns = ns.Parent;
1139                         }
1140                 }
1141
1142                 public override string GetSignatureForMetadata ()
1143                 {
1144                         if (Parent is TypeDefinition) {
1145                                 return Parent.GetSignatureForMetadata () + "+" + TypeNameParser.Escape (FilterNestedName (MemberName.Basename));
1146                         }
1147
1148                         return base.GetSignatureForMetadata ();
1149                 }
1150
1151                 public virtual void SetBaseTypes (List<FullNamedExpression> baseTypes)
1152                 {
1153                         type_bases = baseTypes;
1154                 }
1155
1156                 /// <summary>
1157                 ///   This function computes the Base class and also the
1158                 ///   list of interfaces that the class or struct @c implements.
1159                 ///   
1160                 ///   The return value is an array (might be null) of
1161                 ///   interfaces implemented (as Types).
1162                 ///   
1163                 ///   The @base_class argument is set to the base object or null
1164                 ///   if this is `System.Object'. 
1165                 /// </summary>
1166                 protected virtual TypeSpec[] ResolveBaseTypes (out FullNamedExpression base_class)
1167                 {
1168                         base_class = null;
1169                         if (type_bases == null)
1170                                 return null;
1171
1172                         int count = type_bases.Count;
1173                         TypeSpec[] ifaces = null;
1174                         var base_context = new BaseContext (this);
1175                         for (int i = 0, j = 0; i < count; i++){
1176                                 FullNamedExpression fne = type_bases [i];
1177
1178                                 var fne_resolved = fne.ResolveAsType (base_context);
1179                                 if (fne_resolved == null)
1180                                         continue;
1181
1182                                 if (i == 0 && Kind == MemberKind.Class && !fne_resolved.IsInterface) {
1183                                         if (fne_resolved.BuiltinType == BuiltinTypeSpec.Type.Dynamic) {
1184                                                 Report.Error (1965, Location, "Class `{0}' cannot derive from the dynamic type",
1185                                                         GetSignatureForError ());
1186
1187                                                 continue;
1188                                         }
1189                                         
1190                                         base_type = fne_resolved;
1191                                         base_class = fne;
1192                                         continue;
1193                                 }
1194
1195                                 if (ifaces == null)
1196                                         ifaces = new TypeSpec [count - i];
1197
1198                                 if (fne_resolved.IsInterface) {
1199                                         for (int ii = 0; ii < j; ++ii) {
1200                                                 if (fne_resolved == ifaces [ii]) {
1201                                                         Report.Error (528, Location, "`{0}' is already listed in interface list",
1202                                                                 fne_resolved.GetSignatureForError ());
1203                                                         break;
1204                                                 }
1205                                         }
1206
1207                                         if (Kind == MemberKind.Interface && !IsAccessibleAs (fne_resolved)) {
1208                                                 Report.Error (61, fne.Location,
1209                                                         "Inconsistent accessibility: base interface `{0}' is less accessible than interface `{1}'",
1210                                                         fne_resolved.GetSignatureForError (), GetSignatureForError ());
1211                                         }
1212                                 } else {
1213                                         Report.SymbolRelatedToPreviousError (fne_resolved);
1214                                         if (Kind != MemberKind.Class) {
1215                                                 Report.Error (527, fne.Location, "Type `{0}' in interface list is not an interface", fne_resolved.GetSignatureForError ());
1216                                         } else if (base_class != null)
1217                                                 Report.Error (1721, fne.Location, "`{0}': Classes cannot have multiple base classes (`{1}' and `{2}')",
1218                                                         GetSignatureForError (), base_class.GetSignatureForError (), fne_resolved.GetSignatureForError ());
1219                                         else {
1220                                                 Report.Error (1722, fne.Location, "`{0}': Base class `{1}' must be specified as first",
1221                                                         GetSignatureForError (), fne_resolved.GetSignatureForError ());
1222                                         }
1223                                 }
1224
1225                                 ifaces [j++] = fne_resolved;
1226                         }
1227
1228                         return ifaces;
1229                 }
1230
1231                 //
1232                 // Checks that some operators come in pairs:
1233                 //  == and !=
1234                 // > and <
1235                 // >= and <=
1236                 // true and false
1237                 //
1238                 // They are matched based on the return type and the argument types
1239                 //
1240                 void CheckPairedOperators ()
1241                 {
1242                         bool has_equality_or_inequality = false;
1243                         List<Operator.OpType> found_matched = new List<Operator.OpType> ();
1244
1245                         for (int i = 0; i < members.Count; ++i) {
1246                                 var o_a = members[i] as Operator;
1247                                 if (o_a == null)
1248                                         continue;
1249
1250                                 var o_type = o_a.OperatorType;
1251                                 if (o_type == Operator.OpType.Equality || o_type == Operator.OpType.Inequality)
1252                                         has_equality_or_inequality = true;
1253
1254                                 if (found_matched.Contains (o_type))
1255                                         continue;
1256
1257                                 var matching_type = o_a.GetMatchingOperator ();
1258                                 if (matching_type == Operator.OpType.TOP) {
1259                                         continue;
1260                                 }
1261
1262                                 bool pair_found = false;
1263                                 for (int ii = 0; ii < members.Count; ++ii) {
1264                                         var o_b = members[ii] as Operator;
1265                                         if (o_b == null || o_b.OperatorType != matching_type)
1266                                                 continue;
1267
1268                                         if (!TypeSpecComparer.IsEqual (o_a.ReturnType, o_b.ReturnType))
1269                                                 continue;
1270
1271                                         if (!TypeSpecComparer.Equals (o_a.ParameterTypes, o_b.ParameterTypes))
1272                                                 continue;
1273
1274                                         found_matched.Add (matching_type);
1275                                         pair_found = true;
1276                                         break;
1277                                 }
1278
1279                                 if (!pair_found) {
1280                                         Report.Error (216, o_a.Location,
1281                                                 "The operator `{0}' requires a matching operator `{1}' to also be defined",
1282                                                 o_a.GetSignatureForError (), Operator.GetName (matching_type));
1283                                 }
1284                         }
1285
1286                         if (has_equality_or_inequality) {
1287                                 if (!HasEquals)
1288                                         Report.Warning (660, 2, Location, "`{0}' defines operator == or operator != but does not override Object.Equals(object o)",
1289                                                 GetSignatureForError ());
1290
1291                                 if (!HasGetHashCode)
1292                                         Report.Warning (661, 2, Location, "`{0}' defines operator == or operator != but does not override Object.GetHashCode()",
1293                                                 GetSignatureForError ());
1294                         }
1295                 }
1296
1297                 public override void CreateMetadataName (StringBuilder sb)
1298                 {
1299                         if (Parent.MemberName != null) {
1300                                 Parent.CreateMetadataName (sb);
1301
1302                                 if (sb.Length != 0) {
1303                                         sb.Append (".");
1304                                 }
1305                         }
1306
1307                         sb.Append (MemberName.Basename);
1308                 }
1309         
1310                 bool CreateTypeBuilder ()
1311                 {
1312                         //
1313                         // Sets .size to 1 for structs with no instance fields
1314                         //
1315                         int type_size = Kind == MemberKind.Struct && !HasInstanceField && !(this is StateMachine) ? 1 : 0;
1316
1317                         var parent_def = Parent as TypeDefinition;
1318                         if (parent_def == null) {
1319                                 var sb = new StringBuilder ();
1320                                 CreateMetadataName (sb);
1321                                 TypeBuilder = Module.CreateBuilder (sb.ToString (), TypeAttr, type_size);
1322                         } else {
1323                                 TypeBuilder = parent_def.TypeBuilder.DefineNestedType (FilterNestedName (MemberName.Basename), TypeAttr, null, type_size);
1324                         }
1325
1326                         if (DeclaringAssembly.Importer != null)
1327                                 DeclaringAssembly.Importer.AddCompiledType (TypeBuilder, spec);
1328
1329                         spec.SetMetaInfo (TypeBuilder);
1330                         spec.MemberCache = new MemberCache (this);
1331
1332                         TypeParameters parentAllTypeParameters = null;
1333                         if (parent_def != null) {
1334                                 spec.DeclaringType = Parent.CurrentType;
1335                                 parent_def.MemberCache.AddMember (spec);
1336                                 parentAllTypeParameters = parent_def.all_type_parameters;
1337                         }
1338
1339                         if (MemberName.TypeParameters != null || parentAllTypeParameters != null) {
1340                                 var tparam_names = CreateTypeParameters (parentAllTypeParameters);
1341
1342                                 all_tp_builders = TypeBuilder.DefineGenericParameters (tparam_names);
1343
1344                                 if (CurrentTypeParameters != null) {
1345                                         CurrentTypeParameters.Create (spec, CurrentTypeParametersStartIndex, this);
1346                                         CurrentTypeParameters.Define (all_tp_builders);
1347                                 }
1348                         }
1349
1350                         return true;
1351                 }
1352
1353                 public static string FilterNestedName (string name)
1354                 {
1355                         //
1356                         // SRE API does not handle namespaces and types separately but
1357                         // determine that from '.' in name. That's problematic because 
1358                         // dot is valid character for type name. By replacing any '.'
1359                         // in name we avoid any ambiguities and never emit metadata
1360                         // namespace for nested types
1361                         //
1362                         return name.Replace ('.', '_');
1363                 }
1364
1365                 string[] CreateTypeParameters (TypeParameters parentAllTypeParameters)
1366                 {
1367                         string[] names;
1368                         int parent_offset = 0;
1369                         if (parentAllTypeParameters != null) {
1370                                 if (CurrentTypeParameters == null) {
1371                                         all_type_parameters = parentAllTypeParameters;
1372                                         return parentAllTypeParameters.GetAllNames ();
1373                                 }
1374
1375                                 names = new string[parentAllTypeParameters.Count + CurrentTypeParameters.Count];
1376                                 all_type_parameters = new TypeParameters (names.Length);
1377                                 all_type_parameters.Add (parentAllTypeParameters);
1378
1379                                 parent_offset = all_type_parameters.Count;
1380                                 for (int i = 0; i < parent_offset; ++i)
1381                                         names[i] = all_type_parameters[i].MemberName.Name;
1382
1383                         } else {
1384                                 names = new string[CurrentTypeParameters.Count];
1385                         }
1386
1387                         for (int i = 0; i < CurrentTypeParameters.Count; ++i) {
1388                                 if (all_type_parameters != null)
1389                                         all_type_parameters.Add (MemberName.TypeParameters[i]);
1390
1391                                 var name = CurrentTypeParameters[i].MemberName.Name;
1392                                 names[parent_offset + i] = name;
1393                                 for (int ii = 0; ii < parent_offset + i; ++ii) {
1394                                         if (names[ii] != name)
1395                                                 continue;
1396
1397                                         var tp = CurrentTypeParameters[i];
1398                                         var conflict = all_type_parameters[ii];
1399
1400                                         tp.WarningParentNameConflict (conflict);
1401                                 }
1402                         }
1403
1404                         if (all_type_parameters == null)
1405                                 all_type_parameters = CurrentTypeParameters;
1406
1407                         return names;
1408                 }
1409
1410
1411                 public SourceMethodBuilder CreateMethodSymbolEntry ()
1412                 {
1413                         if (Module.DeclaringAssembly.SymbolWriter == null || (ModFlags & Modifiers.DEBUGGER_HIDDEN) != 0)
1414                                 return null;
1415
1416                         var source_file = GetCompilationSourceFile ();
1417                         if (source_file == null)
1418                                 return null;
1419
1420                         return new SourceMethodBuilder (source_file.SymbolUnitEntry);
1421                 }
1422
1423                 //
1424                 // Creates a proxy base method call inside this container for hoisted base member calls
1425                 //
1426                 public MethodSpec CreateHoistedBaseCallProxy (ResolveContext rc, MethodSpec method)
1427                 {
1428                         Method proxy_method;
1429
1430                         //
1431                         // One proxy per base method is enough
1432                         //
1433                         if (hoisted_base_call_proxies == null) {
1434                                 hoisted_base_call_proxies = new Dictionary<MethodSpec, Method> ();
1435                                 proxy_method = null;
1436                         } else {
1437                                 hoisted_base_call_proxies.TryGetValue (method, out proxy_method);
1438                         }
1439
1440                         if (proxy_method == null) {
1441                                 string name = CompilerGeneratedContainer.MakeName (method.Name, null, "BaseCallProxy", hoisted_base_call_proxies.Count);
1442
1443                                 MemberName member_name;
1444                                 TypeArguments targs = null;
1445                                 TypeSpec return_type = method.ReturnType;
1446                                 var local_param_types = method.Parameters.Types;
1447
1448                                 if (method.IsGeneric) {
1449                                         //
1450                                         // Copy all base generic method type parameters info
1451                                         //
1452                                         var hoisted_tparams = method.GenericDefinition.TypeParameters;
1453                                         var tparams = new TypeParameters ();
1454
1455                                         targs = new TypeArguments ();
1456                                         targs.Arguments = new TypeSpec[hoisted_tparams.Length];
1457                                         for (int i = 0; i < hoisted_tparams.Length; ++i) {
1458                                                 var tp = hoisted_tparams[i];
1459                                                 var tp_name = tp.Name;
1460 #if DEBUG
1461                                                 tp_name += "_Proxy";
1462 #endif
1463                                                 var local_tp = new TypeParameter (tp, null, new MemberName (tp_name, Location), null);
1464                                                 tparams.Add (local_tp);
1465
1466                                                 targs.Add (new SimpleName (tp.Name, Location));
1467                                                 targs.Arguments[i] = local_tp.Type;
1468                                         }
1469
1470                                         member_name = new MemberName (name, tparams, Location);
1471
1472                                         //
1473                                         // Mutate any method type parameters from original
1474                                         // to newly created hoisted version
1475                                         //
1476                                         var mutator = new TypeParameterMutator (hoisted_tparams, tparams);
1477                                         return_type = mutator.Mutate (return_type);
1478                                         local_param_types = mutator.Mutate (local_param_types);
1479
1480                                         var inflator = new TypeParameterInflator (this, null, hoisted_tparams, targs.Arguments);
1481                                         for (int i = 0; i < hoisted_tparams.Length; ++i) {
1482                                                 var tp_spec = (TypeParameterSpec) targs.Arguments [i];
1483                                                 tp_spec.InflateConstraints (inflator, tp_spec);
1484                                         }
1485                                 } else {
1486                                         member_name = new MemberName (name);
1487                                 }
1488
1489                                 var base_parameters = new Parameter[method.Parameters.Count];
1490                                 for (int i = 0; i < base_parameters.Length; ++i) {
1491                                         var base_param = method.Parameters.FixedParameters[i];
1492                                         base_parameters[i] = new Parameter (new TypeExpression (local_param_types [i], Location),
1493                                                 base_param.Name, base_param.ModFlags, null, Location);
1494                                         base_parameters[i].Resolve (this, i);
1495                                 }
1496
1497                                 var cloned_params = ParametersCompiled.CreateFullyResolved (base_parameters, local_param_types);
1498                                 if (method.Parameters.HasArglist) {
1499                                         cloned_params.FixedParameters[0] = new Parameter (null, "__arglist", Parameter.Modifier.NONE, null, Location);
1500                                         cloned_params.Types[0] = Module.PredefinedTypes.RuntimeArgumentHandle.Resolve ();
1501                                 }
1502
1503                                 // Compiler generated proxy
1504                                 proxy_method = new Method (this, new TypeExpression (return_type, Location),
1505                                         Modifiers.PRIVATE | Modifiers.COMPILER_GENERATED | Modifiers.DEBUGGER_HIDDEN,
1506                                         member_name, cloned_params, null);
1507
1508                                 var block = new ToplevelBlock (Compiler, proxy_method.ParameterInfo, Location) {
1509                                         IsCompilerGenerated = true
1510                                 };
1511
1512                                 var mg = MethodGroupExpr.CreatePredefined (method, method.DeclaringType, Location);
1513                                 mg.InstanceExpression = new BaseThis (method.DeclaringType, Location);
1514                                 if (targs != null)
1515                                         mg.SetTypeArguments (rc, targs);
1516
1517                                 // Get all the method parameters and pass them as arguments
1518                                 var real_base_call = new Invocation (mg, block.GetAllParametersArguments ());
1519                                 Statement statement;
1520                                 if (method.ReturnType.Kind == MemberKind.Void)
1521                                         statement = new StatementExpression (real_base_call);
1522                                 else
1523                                         statement = new Return (real_base_call, Location);
1524
1525                                 block.AddStatement (statement);
1526                                 proxy_method.Block = block;
1527
1528                                 members.Add (proxy_method);
1529                                 proxy_method.Define ();
1530                                 proxy_method.PrepareEmit ();
1531
1532                                 hoisted_base_call_proxies.Add (method, proxy_method);
1533                         }
1534
1535                         return proxy_method.Spec;
1536                 }
1537
1538                 protected bool DefineBaseTypes ()
1539                 {
1540                         if (IsPartialPart && Kind == MemberKind.Class)
1541                                 return true;
1542
1543                         return DoDefineBaseType ();
1544                 }
1545
1546                 bool DoDefineBaseType ()
1547                 {
1548                         iface_exprs = ResolveBaseTypes (out base_type_expr);
1549                         bool set_base_type;
1550
1551                         if (IsPartialPart) {
1552                                 set_base_type = false;
1553
1554                                 if (base_type_expr != null) {
1555                                         if (PartialContainer.base_type_expr != null && PartialContainer.base_type != base_type) {
1556                                                 Report.SymbolRelatedToPreviousError (base_type_expr.Location, "");
1557                                                 Report.Error (263, Location,
1558                                                         "Partial declarations of `{0}' must not specify different base classes",
1559                                                         GetSignatureForError ());
1560                                         } else {
1561                                                 PartialContainer.base_type_expr = base_type_expr;
1562                                                 PartialContainer.base_type = base_type;
1563                                                 set_base_type = true;
1564                                         }
1565                                 }
1566
1567                                 if (iface_exprs != null) {
1568                                         if (PartialContainer.iface_exprs == null)
1569                                                 PartialContainer.iface_exprs = iface_exprs;
1570                                         else {
1571                                                 var ifaces = new List<TypeSpec> (PartialContainer.iface_exprs);
1572                                                 foreach (var iface_partial in iface_exprs) {
1573                                                         if (ifaces.Contains (iface_partial))
1574                                                                 continue;
1575
1576                                                         ifaces.Add (iface_partial);
1577                                                 }
1578
1579                                                 PartialContainer.iface_exprs = ifaces.ToArray ();
1580                                         }
1581                                 }
1582
1583                                 PartialContainer.members.AddRange (members);
1584                                 if (containers != null) {
1585                                         if (PartialContainer.containers == null)
1586                                                 PartialContainer.containers = new List<TypeContainer> ();
1587
1588                                         PartialContainer.containers.AddRange (containers);
1589                                 }
1590
1591                                 if (PrimaryConstructorParameters != null) {
1592                                         if (PartialContainer.PrimaryConstructorParameters != null) {
1593                                                 Report.Error (8036, Location, "Only one part of a partial type can declare primary constructor parameters");
1594                                         } else {
1595                                                 PartialContainer.PrimaryConstructorParameters = PrimaryConstructorParameters;
1596                                         }
1597                                 }
1598
1599                                 members_defined = members_defined_ok = true;
1600                                 caching_flags |= Flags.CloseTypeCreated;
1601                         } else {
1602                                 set_base_type = true;
1603                         }
1604
1605                         var cycle = CheckRecursiveDefinition (this);
1606                         if (cycle != null) {
1607                                 Report.SymbolRelatedToPreviousError (cycle);
1608                                 if (this is Interface) {
1609                                         Report.Error (529, Location,
1610                                                 "Inherited interface `{0}' causes a cycle in the interface hierarchy of `{1}'",
1611                                             GetSignatureForError (), cycle.GetSignatureForError ());
1612
1613                                         iface_exprs = null;
1614                                         PartialContainer.iface_exprs = null;
1615                                 } else {
1616                                         Report.Error (146, Location,
1617                                                 "Circular base class dependency involving `{0}' and `{1}'",
1618                                                 GetSignatureForError (), cycle.GetSignatureForError ());
1619
1620                                         base_type = null;
1621                                         PartialContainer.base_type = null;
1622                                 }
1623                         }
1624
1625                         if (iface_exprs != null) {
1626                                 if (!PrimaryConstructorBaseArgumentsStart.IsNull) {
1627                                         Report.Error (8049, PrimaryConstructorBaseArgumentsStart, "Implemented interfaces cannot have arguments");
1628                                 }
1629
1630                                 foreach (var iface_type in iface_exprs) {
1631                                         // Prevents a crash, the interface might not have been resolved: 442144
1632                                         if (iface_type == null)
1633                                                 continue;
1634                                         
1635                                         if (!spec.AddInterfaceDefined (iface_type))
1636                                                 continue;
1637
1638                                         TypeBuilder.AddInterfaceImplementation (iface_type.GetMetaInfo ());
1639                                 }
1640                         }
1641
1642                         if (Kind == MemberKind.Interface) {
1643                                 spec.BaseType = Compiler.BuiltinTypes.Object;
1644                                 return true;
1645                         }
1646
1647                         if (set_base_type) {
1648                                 SetBaseType ();
1649                         }
1650
1651                         //
1652                         // Base type of partial container has to be resolved before we
1653                         // resolve any nested types of the container. We need to know
1654                         // partial parts because the base type can be specified in file
1655                         // defined after current container
1656                         //
1657                         if (class_partial_parts != null) {
1658                                 foreach (var pp in class_partial_parts) {
1659                                         if (pp.PrimaryConstructorBaseArguments != null)
1660                                                 PrimaryConstructorBaseArguments = pp.PrimaryConstructorBaseArguments;
1661
1662                                         pp.DoDefineBaseType ();
1663                                 }
1664
1665                         }
1666
1667                         return true;
1668                 }
1669
1670                 void SetBaseType ()
1671                 {
1672                         if (base_type == null) {
1673                                 TypeBuilder.SetParent (null);
1674                                 return;
1675                         }
1676
1677                         if (spec.BaseType == base_type)
1678                                 return;
1679
1680                         spec.BaseType = base_type;
1681
1682                         if (IsPartialPart)
1683                                 spec.UpdateInflatedInstancesBaseType ();
1684
1685                         // Set base type after type creation
1686                         TypeBuilder.SetParent (base_type.GetMetaInfo ());
1687                 }
1688
1689                 public override void ExpandBaseInterfaces ()
1690                 {
1691                         DoResolveTypeParameters ();
1692
1693                         if (!IsPartialPart)
1694                                 DoExpandBaseInterfaces ();
1695
1696                         base.ExpandBaseInterfaces ();
1697                 }
1698
1699                 public void DoExpandBaseInterfaces ()
1700                 {
1701                         if ((caching_flags & Flags.InterfacesExpanded) != 0)
1702                                 return;
1703
1704                         caching_flags |= Flags.InterfacesExpanded;
1705
1706                         //
1707                         // Expand base interfaces. It cannot be done earlier because all partial
1708                         // interface parts need to be defined before the type they are used from
1709                         //
1710                         if (iface_exprs != null) {
1711                                 foreach (var iface in iface_exprs) {
1712                                         if (iface == null)
1713                                                 continue;
1714
1715                                         var td = iface.MemberDefinition as TypeDefinition;
1716                                         if (td != null)
1717                                                 td.DoExpandBaseInterfaces ();
1718
1719                                         if (iface.Interfaces == null)
1720                                                 continue;
1721
1722                                         foreach (var biface in iface.Interfaces) {
1723                                                 if (spec.AddInterfaceDefined (biface)) {
1724                                                         TypeBuilder.AddInterfaceImplementation (biface.GetMetaInfo ());
1725                                                 }
1726                                         }
1727                                 }
1728                         }
1729
1730                         //
1731                         // Include all base type interfaces too, see ImportTypeBase for details
1732                         //
1733                         if (base_type != null) {
1734                                 var td = base_type.MemberDefinition as TypeDefinition;
1735                                 if (td != null)
1736                                         td.DoExpandBaseInterfaces ();
1737
1738                                 //
1739                                 // Simply use base interfaces only, they are all expanded which makes
1740                                 // it easy to handle generic type argument propagation with single
1741                                 // inflator only.
1742                                 //
1743                                 // interface IA<T> : IB<T>
1744                                 // interface IB<U> : IC<U>
1745                                 // interface IC<V>
1746                                 //
1747                                 if (base_type.Interfaces != null) {
1748                                         foreach (var iface in base_type.Interfaces) {
1749                                                 spec.AddInterfaceDefined (iface);
1750                                         }
1751                                 }
1752                         }
1753                 }
1754
1755                 public override void PrepareEmit ()
1756                 {
1757                         if ((caching_flags & Flags.CloseTypeCreated) != 0)
1758                                 return;
1759
1760                         foreach (var member in members) {
1761                                 var pbm = member as MemberBase;
1762                                 if (pbm != null)
1763                                         pbm.PrepareEmit ();
1764                         }
1765
1766                         base.PrepareEmit ();
1767                 }
1768
1769                 //
1770                 // Defines the type in the appropriate ModuleBuilder or TypeBuilder.
1771                 //
1772                 public override bool CreateContainer ()
1773                 {
1774                         if (TypeBuilder != null)
1775                                 return !error;
1776
1777                         if (error)
1778                                 return false;
1779
1780                         if (IsPartialPart) {
1781                                 spec = PartialContainer.spec;
1782                                 TypeBuilder = PartialContainer.TypeBuilder;
1783                                 all_tp_builders = PartialContainer.all_tp_builders;
1784                                 all_type_parameters = PartialContainer.all_type_parameters;
1785                         } else {
1786                                 if (!CreateTypeBuilder ()) {
1787                                         error = true;
1788                                         return false;
1789                                 }
1790                         }
1791
1792                         return base.CreateContainer ();
1793                 }
1794
1795                 protected override void DoDefineContainer ()
1796                 {
1797                         DefineBaseTypes ();
1798                 }
1799
1800                 //
1801                 // Replaces normal spec with predefined one when compiling corlib
1802                 // and this type container defines predefined type
1803                 //
1804                 public void SetPredefinedSpec (BuiltinTypeSpec spec)
1805                 {
1806                         // When compiling build-in types we start with two
1807                         // version of same type. One is of BuiltinTypeSpec and
1808                         // second one is ordinary TypeSpec. The unification
1809                         // happens at later stage when we know which type
1810                         // really matches the builtin type signature. However
1811                         // that means TypeSpec create during CreateType of this
1812                         // type has to be replaced with builtin one
1813                         // 
1814                         spec.SetMetaInfo (TypeBuilder);
1815                         spec.MemberCache = this.spec.MemberCache;
1816                         spec.DeclaringType = this.spec.DeclaringType;
1817
1818                         this.spec = spec;
1819                         current_type = null;
1820                         if (class_partial_parts != null) {
1821                                 foreach (var part in class_partial_parts) {
1822                                         part.spec = spec;
1823                                         part.current_type = null;
1824                                 }
1825                         }
1826                 }
1827
1828                 public override void RemoveContainer (TypeContainer cont)
1829                 {
1830                         base.RemoveContainer (cont);
1831                         Members.Remove (cont);
1832                         Cache.Remove (cont.MemberName.Basename);
1833                 }
1834
1835                 protected virtual bool DoResolveTypeParameters ()
1836                 {
1837                         var tparams = MemberName.TypeParameters;
1838                         if (tparams == null)
1839                                 return true;
1840
1841                         var base_context = new BaseContext (this);
1842                         for (int i = 0; i < tparams.Count; ++i) {
1843                                 var tp = tparams[i];
1844
1845                                 if (!tp.ResolveConstraints (base_context)) {
1846                                         error = true;
1847                                         return false;
1848                                 }
1849
1850                                 if (IsPartialPart) {
1851                                         var pc_tp = PartialContainer.CurrentTypeParameters [i];
1852
1853                                         tp.Create (spec, this);
1854                                         tp.Define (pc_tp);
1855
1856                                         if (tp.OptAttributes != null) {
1857                                                 if (pc_tp.OptAttributes == null)
1858                                                         pc_tp.OptAttributes = tp.OptAttributes;
1859                                                 else
1860                                                         pc_tp.OptAttributes.Attrs.AddRange (tp.OptAttributes.Attrs);
1861                                         }
1862                                 }
1863                         }
1864
1865                         if (IsPartialPart) {
1866                                 PartialContainer.CurrentTypeParameters.UpdateConstraints (this);
1867                         }
1868
1869                         return true;
1870                 }
1871
1872                 TypeSpec CheckRecursiveDefinition (TypeDefinition tc)
1873                 {
1874                         if (InTransit != null)
1875                                 return spec;
1876
1877                         InTransit = tc;
1878
1879                         if (base_type != null) {
1880                                 var ptc = base_type.MemberDefinition as TypeDefinition;
1881                                 if (ptc != null && ptc.CheckRecursiveDefinition (this) != null)
1882                                         return base_type;
1883                         }
1884
1885                         if (iface_exprs != null && this is Interface) {
1886                                 foreach (var iface in iface_exprs) {
1887                                         // the interface might not have been resolved, prevents a crash, see #442144
1888                                         if (iface == null)
1889                                                 continue;
1890                                         var ptc = iface.MemberDefinition as Interface;
1891                                         if (ptc != null && ptc.CheckRecursiveDefinition (this) != null)
1892                                                 return iface;
1893                                 }
1894                         }
1895
1896                         if (!IsTopLevel && Parent.PartialContainer.CheckRecursiveDefinition (this) != null)
1897                                 return spec;
1898
1899                         InTransit = null;
1900                         return null;
1901                 }
1902
1903                 /// <summary>
1904                 ///   Populates our TypeBuilder with fields and methods
1905                 /// </summary>
1906                 public sealed override bool Define ()
1907                 {
1908                         if (members_defined)
1909                                 return members_defined_ok;
1910
1911                         members_defined_ok = DoDefineMembers ();
1912                         members_defined = true;
1913
1914                         base.Define ();
1915
1916                         return members_defined_ok;
1917                 }
1918
1919                 protected virtual bool DoDefineMembers ()
1920                 {
1921                         Debug.Assert (!IsPartialPart);
1922
1923                         if (iface_exprs != null) {
1924                                 foreach (var iface_type in iface_exprs) {
1925                                         if (iface_type == null)
1926                                                 continue;
1927
1928                                         // Ensure the base is always setup
1929                                         var compiled_iface = iface_type.MemberDefinition as Interface;
1930                                         if (compiled_iface != null)
1931                                                 compiled_iface.Define ();
1932
1933                                         iface_type.CheckObsoleteness (this, Location);
1934
1935                                         if (iface_type.Arity > 0) {
1936                                                 // TODO: passing `this' is wrong, should be base type iface instead
1937                                                 VarianceDecl.CheckTypeVariance (iface_type, Variance.Covariant, this);
1938
1939                                                 if (((InflatedTypeSpec) iface_type).HasDynamicArgument () && !IsCompilerGenerated) {
1940                                                         Report.Error (1966, Location,
1941                                                                 "`{0}': cannot implement a dynamic interface `{1}'",
1942                                                                 GetSignatureForError (), iface_type.GetSignatureForError ());
1943                                                         return false;
1944                                                 }
1945                                         }
1946
1947                                         if (iface_type.IsGenericOrParentIsGeneric) {
1948                                                 foreach (var prev_iface in iface_exprs) {
1949                                                         if (prev_iface == iface_type || prev_iface == null)
1950                                                                 break;
1951
1952                                                         if (!TypeSpecComparer.Unify.IsEqual (iface_type, prev_iface))
1953                                                                 continue;
1954
1955                                                         Report.Error (695, Location,
1956                                                                 "`{0}' cannot implement both `{1}' and `{2}' because they may unify for some type parameter substitutions",
1957                                                                 GetSignatureForError (), prev_iface.GetSignatureForError (), iface_type.GetSignatureForError ());
1958                                                 }
1959                                         }
1960                                 }
1961
1962                                 if (Kind == MemberKind.Interface) {
1963                                         foreach (var iface in spec.Interfaces) {
1964                                                 MemberCache.AddInterface (iface);
1965                                         }
1966                                 }
1967                         }
1968
1969                         if (base_type != null) {
1970                                 //
1971                                 // Run checks skipped during DefineType (e.g FullNamedExpression::ResolveAsType)
1972                                 //
1973                                 if (base_type_expr != null) {
1974                                         base_type.CheckObsoleteness (this, base_type_expr.Location);
1975
1976                                         if (IsGenericOrParentIsGeneric && base_type.IsAttribute) {
1977                                                 Report.Error (698, base_type_expr.Location,
1978                                                         "A generic type cannot derive from `{0}' because it is an attribute class",
1979                                                         base_type.GetSignatureForError ());
1980                                         }
1981                                 }
1982
1983                                 var baseContainer = base_type.MemberDefinition as ClassOrStruct;
1984                                 if (baseContainer != null) {
1985                                         baseContainer.Define ();
1986
1987                                         //
1988                                         // It can trigger define of this type (for generic types only)
1989                                         //
1990                                         if (HasMembersDefined)
1991                                                 return true;
1992                                 }
1993                         }
1994
1995                         if (Kind == MemberKind.Struct || Kind == MemberKind.Class) {
1996                                 pending = PendingImplementation.GetPendingImplementations (this);
1997                         }
1998
1999                         var count = members.Count;              
2000                         for (int i = 0; i < count; ++i) {
2001                                 var mc = members[i] as InterfaceMemberBase;
2002                                 if (mc == null || !mc.IsExplicitImpl)
2003                                         continue;
2004
2005                                 try {
2006                                         mc.Define ();
2007                                 } catch (Exception e) {
2008                                         throw new InternalErrorException (mc, e);
2009                                 }
2010                         }
2011
2012                         for (int i = 0; i < count; ++i) {
2013                                 var mc = members[i] as InterfaceMemberBase;
2014                                 if (mc != null && mc.IsExplicitImpl)
2015                                         continue;
2016
2017                                 if (members[i] is TypeContainer)
2018                                         continue;
2019
2020                                 try {
2021                                         members[i].Define ();
2022                                 } catch (Exception e) {
2023                                         throw new InternalErrorException (members[i], e);
2024                                 }
2025                         }
2026
2027                         if (HasOperators) {
2028                                 CheckPairedOperators ();
2029                         }
2030
2031                         ComputeIndexerName();
2032
2033                         if (HasEquals && !HasGetHashCode) {
2034                                 Report.Warning (659, 3, Location,
2035                                         "`{0}' overrides Object.Equals(object) but does not override Object.GetHashCode()", GetSignatureForError ());
2036                         }
2037
2038                         if (Kind == MemberKind.Interface && iface_exprs != null) {
2039                                 MemberCache.RemoveHiddenMembers (spec);
2040                         }
2041
2042                         return true;
2043                 }
2044
2045                 void ComputeIndexerName ()
2046                 {
2047                         var indexers = MemberCache.FindMembers (spec, MemberCache.IndexerNameAlias, true);
2048                         if (indexers == null)
2049                                 return;
2050
2051                         string class_indexer_name = null;
2052
2053                         //
2054                         // Check normal indexers for consistent name, explicit interface implementation
2055                         // indexers are ignored
2056                         //
2057                         foreach (var indexer in indexers) {
2058                                 //
2059                                 // FindMembers can return unfiltered full hierarchy names
2060                                 //
2061                                 if (indexer.DeclaringType != spec)
2062                                         continue;
2063
2064                                 has_normal_indexers = true;
2065
2066                                 if (class_indexer_name == null) {
2067                                         indexer_name = class_indexer_name = indexer.Name;
2068                                         continue;
2069                                 }
2070
2071                                 if (indexer.Name != class_indexer_name)
2072                                         Report.Error (668, ((Indexer)indexer.MemberDefinition).Location,
2073                                                 "Two indexers have different names; the IndexerName attribute must be used with the same name on every indexer within a type");
2074                         }
2075                 }
2076
2077                 void EmitIndexerName ()
2078                 {
2079                         if (!has_normal_indexers)
2080                                 return;
2081
2082                         var ctor = Module.PredefinedMembers.DefaultMemberAttributeCtor.Get ();
2083                         if (ctor == null)
2084                                 return;
2085
2086                         var encoder = new AttributeEncoder ();
2087                         encoder.Encode (GetAttributeDefaultMember ());
2088                         encoder.EncodeEmptyNamedArguments ();
2089
2090                         TypeBuilder.SetCustomAttribute ((ConstructorInfo) ctor.GetMetaInfo (), encoder.ToArray ());
2091                 }
2092
2093                 public override void VerifyMembers ()
2094                 {
2095                         //
2096                         // Check for internal or private fields that were never assigned
2097                         //
2098                         if (!IsCompilerGenerated && Compiler.Settings.WarningLevel >= 3 && this == PartialContainer) {
2099                                 bool is_type_exposed = Kind == MemberKind.Struct || IsExposedFromAssembly ();
2100                                 foreach (var member in members) {
2101                                         if (member is Event) {
2102                                                 //
2103                                                 // An event can be assigned from same class only, report
2104                                                 // this warning for all accessibility modes
2105                                                 //
2106                                                 if (!member.IsUsed && !PartialContainer.HasStructLayout)
2107                                                         Report.Warning (67, 3, member.Location, "The event `{0}' is never used", member.GetSignatureForError ());
2108
2109                                                 continue;
2110                                         }
2111
2112                                         if ((member.ModFlags & Modifiers.AccessibilityMask) != Modifiers.PRIVATE) {
2113                                                 if (is_type_exposed)
2114                                                         continue;
2115
2116                                                 member.SetIsUsed ();
2117                                         }
2118
2119                                         var f = member as Field;
2120                                         if (f == null)
2121                                                 continue;
2122
2123                                         if (!member.IsUsed) {
2124                                                 if (!PartialContainer.HasStructLayout) {
2125                                                         if ((member.caching_flags & Flags.IsAssigned) == 0) {
2126                                                                 Report.Warning (169, 3, member.Location, "The private field `{0}' is never used", member.GetSignatureForError ());
2127                                                         } else {
2128                                                                 Report.Warning (414, 3, member.Location, "The private field `{0}' is assigned but its value is never used",
2129                                                                         member.GetSignatureForError ());
2130                                                         }
2131                                                 }
2132
2133                                                 continue;
2134                                         }
2135
2136                                         if ((f.caching_flags & Flags.IsAssigned) != 0)
2137                                                 continue;
2138
2139                                         //
2140                                         // Only report 649 on level 4
2141                                         //
2142                                         if (Compiler.Settings.WarningLevel < 4)
2143                                                 continue;
2144
2145                                         //
2146                                         // Don't be pedantic when type requires specific layout
2147                                         //
2148                                         if (f.OptAttributes != null || PartialContainer.HasStructLayout)
2149                                                 continue;
2150
2151                                         Constant c = New.Constantify (f.MemberType, f.Location);
2152                                         string value;
2153                                         if (c != null) {
2154                                                 value = c.GetValueAsLiteral ();
2155                                         } else if (TypeSpec.IsReferenceType (f.MemberType)) {
2156                                                 value = "null";
2157                                         } else {
2158                                                 value = null;
2159                                         }
2160
2161                                         if (value != null)
2162                                                 value = " `" + value + "'";
2163
2164                                         Report.Warning (649, 4, f.Location, "Field `{0}' is never assigned to, and will always have its default value{1}",
2165                                                 f.GetSignatureForError (), value);
2166                                 }
2167                         }
2168
2169                         base.VerifyMembers ();
2170                 }
2171
2172                 public override void Emit ()
2173                 {
2174                         if (OptAttributes != null)
2175                                 OptAttributes.Emit ();
2176
2177                         if (!IsCompilerGenerated) {
2178                                 if (!IsTopLevel) {
2179                                         MemberSpec candidate;
2180                                         bool overrides = false;
2181                                         var conflict_symbol = MemberCache.FindBaseMember (this, out candidate, ref overrides);
2182                                         if (conflict_symbol == null && candidate == null) {
2183                                                 if ((ModFlags & Modifiers.NEW) != 0)
2184                                                         Report.Warning (109, 4, Location, "The member `{0}' does not hide an inherited member. The new keyword is not required",
2185                                                                 GetSignatureForError ());
2186                                         } else {
2187                                                 if ((ModFlags & Modifiers.NEW) == 0) {
2188                                                         if (candidate == null)
2189                                                                 candidate = conflict_symbol;
2190
2191                                                         Report.SymbolRelatedToPreviousError (candidate);
2192                                                         Report.Warning (108, 2, Location, "`{0}' hides inherited member `{1}'. Use the new keyword if hiding was intended",
2193                                                                 GetSignatureForError (), candidate.GetSignatureForError ());
2194                                                 }
2195                                         }
2196                                 }
2197
2198                                 // Run constraints check on all possible generic types
2199                                 if (base_type != null && base_type_expr != null) {
2200                                         ConstraintChecker.Check (this, base_type, base_type_expr.Location);
2201                                 }
2202
2203                                 if (iface_exprs != null) {
2204                                         foreach (var iface_type in iface_exprs) {
2205                                                 if (iface_type == null)
2206                                                         continue;
2207
2208                                                 ConstraintChecker.Check (this, iface_type, Location);   // TODO: Location is wrong
2209                                         }
2210                                 }
2211                         }
2212
2213                         if (all_tp_builders != null) {
2214                                 int current_starts_index = CurrentTypeParametersStartIndex;
2215                                 for (int i = 0; i < all_tp_builders.Length; i++) {
2216                                         if (i < current_starts_index) {
2217                                                 all_type_parameters[i].EmitConstraints (all_tp_builders [i]);
2218                                         } else {
2219                                                 var tp = CurrentTypeParameters [i - current_starts_index];
2220                                                 tp.CheckGenericConstraints (!IsObsolete);
2221                                                 tp.Emit ();
2222                                         }
2223                                 }
2224                         }
2225
2226                         if ((ModFlags & Modifiers.COMPILER_GENERATED) != 0 && !Parent.IsCompilerGenerated)
2227                                 Module.PredefinedAttributes.CompilerGenerated.EmitAttribute (TypeBuilder);
2228
2229 #if STATIC
2230                         if (Kind == MemberKind.Struct && HasInstanceField) {
2231                                 TypeBuilder.__SetLayout (0, 0);
2232                         }
2233
2234                         if ((TypeBuilder.Attributes & TypeAttributes.StringFormatMask) == 0 && Module.HasDefaultCharSet)
2235                                 TypeBuilder.__SetAttributes (TypeBuilder.Attributes | Module.DefaultCharSetType);
2236 #endif
2237
2238                         base.Emit ();
2239
2240                         for (int i = 0; i < members.Count; i++) {
2241                                 var m = members[i];
2242                                 if ((m.caching_flags & Flags.CloseTypeCreated) != 0)
2243                                         continue;
2244
2245                                 m.Emit ();
2246                         }
2247
2248                         EmitIndexerName ();
2249                         CheckAttributeClsCompliance ();
2250
2251                         if (pending != null)
2252                                 pending.VerifyPendingMethods ();
2253                 }
2254
2255
2256                 void CheckAttributeClsCompliance ()
2257                 {
2258                         if (!spec.IsAttribute || !IsExposedFromAssembly () || !Compiler.Settings.VerifyClsCompliance || !IsClsComplianceRequired ())
2259                                 return;
2260
2261                         foreach (var m in members) {
2262                                 var c = m as Constructor;
2263                                 if (c == null)
2264                                         continue;
2265
2266                                 if (c.HasCompliantArgs)
2267                                         return;
2268                         }
2269
2270                         Report.Warning (3015, 1, Location, "`{0}' has no accessible constructors which use only CLS-compliant types", GetSignatureForError ());
2271                 }
2272
2273                 public sealed override void EmitContainer ()
2274                 {
2275                         if ((caching_flags & Flags.CloseTypeCreated) != 0)
2276                                 return;
2277
2278                         Emit ();
2279                 }
2280
2281                 public override void CloseContainer ()
2282                 {
2283                         if ((caching_flags & Flags.CloseTypeCreated) != 0)
2284                                 return;
2285
2286                         // Close base type container first to avoid TypeLoadException
2287                         if (spec.BaseType != null) {
2288                                 var btype = spec.BaseType.MemberDefinition as TypeContainer;
2289                                 if (btype != null) {
2290                                         btype.CloseContainer ();
2291
2292                                         if ((caching_flags & Flags.CloseTypeCreated) != 0)
2293                                                 return;
2294                                 }
2295                         }
2296
2297                         try {
2298                                 caching_flags |= Flags.CloseTypeCreated;
2299                                 TypeBuilder.CreateType ();
2300                         } catch (TypeLoadException) {
2301                                 //
2302                                 // This is fine, the code still created the type
2303                                 //
2304                         } catch (Exception e) {
2305                                 throw new InternalErrorException (this, e);
2306                         }
2307
2308                         base.CloseContainer ();
2309                         
2310                         containers = null;
2311                         initialized_fields = null;
2312                         initialized_static_fields = null;
2313                         type_bases = null;
2314                         OptAttributes = null;
2315                 }
2316
2317                 //
2318                 // Performs the validation on a Method's modifiers (properties have
2319                 // the same properties).
2320                 //
2321                 // TODO: Why is it not done at parse stage, move to Modifiers::Check
2322                 //
2323                 public bool MethodModifiersValid (MemberCore mc)
2324                 {
2325                         const Modifiers vao = (Modifiers.VIRTUAL | Modifiers.ABSTRACT | Modifiers.OVERRIDE);
2326                         const Modifiers nv = (Modifiers.NEW | Modifiers.VIRTUAL);
2327                         bool ok = true;
2328                         var flags = mc.ModFlags;
2329                         
2330                         //
2331                         // At most one of static, virtual or override
2332                         //
2333                         if ((flags & Modifiers.STATIC) != 0){
2334                                 if ((flags & vao) != 0){
2335                                         Report.Error (112, mc.Location, "A static member `{0}' cannot be marked as override, virtual or abstract",
2336                                                 mc.GetSignatureForError ());
2337                                         ok = false;
2338                                 }
2339                         }
2340
2341                         if ((flags & Modifiers.OVERRIDE) != 0 && (flags & nv) != 0){
2342                                 Report.Error (113, mc.Location, "A member `{0}' marked as override cannot be marked as new or virtual",
2343                                         mc.GetSignatureForError ());
2344                                 ok = false;
2345                         }
2346
2347                         //
2348                         // If the declaration includes the abstract modifier, then the
2349                         // declaration does not include static, virtual or extern
2350                         //
2351                         if ((flags & Modifiers.ABSTRACT) != 0){
2352                                 if ((flags & Modifiers.EXTERN) != 0){
2353                                         Report.Error (
2354                                                 180, mc.Location, "`{0}' cannot be both extern and abstract", mc.GetSignatureForError ());
2355                                         ok = false;
2356                                 }
2357
2358                                 if ((flags & Modifiers.SEALED) != 0) {
2359                                         Report.Error (502, mc.Location, "`{0}' cannot be both abstract and sealed", mc.GetSignatureForError ());
2360                                         ok = false;
2361                                 }
2362
2363                                 if ((flags & Modifiers.VIRTUAL) != 0){
2364                                         Report.Error (503, mc.Location, "The abstract method `{0}' cannot be marked virtual", mc.GetSignatureForError ());
2365                                         ok = false;
2366                                 }
2367
2368                                 if ((ModFlags & Modifiers.ABSTRACT) == 0){
2369                                         Report.SymbolRelatedToPreviousError (this);
2370                                         Report.Error (513, mc.Location, "`{0}' is abstract but it is declared in the non-abstract class `{1}'",
2371                                                 mc.GetSignatureForError (), GetSignatureForError ());
2372                                         ok = false;
2373                                 }
2374                         }
2375
2376                         if ((flags & Modifiers.PRIVATE) != 0){
2377                                 if ((flags & vao) != 0){
2378                                         Report.Error (621, mc.Location, "`{0}': virtual or abstract members cannot be private", mc.GetSignatureForError ());
2379                                         ok = false;
2380                                 }
2381                         }
2382
2383                         if ((flags & Modifiers.SEALED) != 0){
2384                                 if ((flags & Modifiers.OVERRIDE) == 0){
2385                                         Report.Error (238, mc.Location, "`{0}' cannot be sealed because it is not an override", mc.GetSignatureForError ());
2386                                         ok = false;
2387                                 }
2388                         }
2389
2390                         return ok;
2391                 }
2392
2393                 protected override bool VerifyClsCompliance ()
2394                 {
2395                         if (!base.VerifyClsCompliance ())
2396                                 return false;
2397
2398                         // Check all container names for user classes
2399                         if (Kind != MemberKind.Delegate)
2400                                 MemberCache.VerifyClsCompliance (Definition, Report);
2401
2402                         if (BaseType != null && !BaseType.IsCLSCompliant ()) {
2403                                 Report.Warning (3009, 1, Location, "`{0}': base type `{1}' is not CLS-compliant",
2404                                         GetSignatureForError (), BaseType.GetSignatureForError ());
2405                         }
2406                         return true;
2407                 }
2408
2409                 /// <summary>
2410                 ///   Performs checks for an explicit interface implementation.  First it
2411                 ///   checks whether the `interface_type' is a base inteface implementation.
2412                 ///   Then it checks whether `name' exists in the interface type.
2413                 /// </summary>
2414                 public bool VerifyImplements (InterfaceMemberBase mb)
2415                 {
2416                         var ifaces = PartialContainer.Interfaces;
2417                         if (ifaces != null) {
2418                                 foreach (TypeSpec t in ifaces){
2419                                         if (t == mb.InterfaceType || t == null)
2420                                                 return true;
2421
2422                                         var expanded_base = t.Interfaces;
2423                                         if (expanded_base == null)
2424                                                 continue;
2425
2426                                         foreach (var bt in expanded_base) {
2427                                                 if (bt == mb.InterfaceType)
2428                                                         return true;
2429                                         }
2430                                 }
2431                         }
2432                         
2433                         Report.SymbolRelatedToPreviousError (mb.InterfaceType);
2434                         Report.Error (540, mb.Location, "`{0}': containing type does not implement interface `{1}'",
2435                                 mb.GetSignatureForError (), mb.InterfaceType.GetSignatureForError ());
2436                         return false;
2437                 }
2438
2439                 //
2440                 // Used for visiblity checks to tests whether this definition shares
2441                 // base type baseType, it does member-definition search
2442                 //
2443                 public bool IsBaseTypeDefinition (TypeSpec baseType)
2444                 {
2445                         // RootContext check
2446                         if (TypeBuilder == null)
2447                                 return false;
2448
2449                         var type = spec;
2450                         do {
2451                                 if (type.MemberDefinition == baseType.MemberDefinition)
2452                                         return true;
2453
2454                                 type = type.BaseType;
2455                         } while (type != null);
2456
2457                         return false;
2458                 }
2459
2460                 public override bool IsClsComplianceRequired ()
2461                 {
2462                         if (IsPartialPart)
2463                                 return PartialContainer.IsClsComplianceRequired ();
2464
2465                         return base.IsClsComplianceRequired ();
2466                 }
2467
2468                 bool ITypeDefinition.IsInternalAsPublic (IAssemblyDefinition assembly)
2469                 {
2470                         return Module.DeclaringAssembly == assembly;
2471                 }
2472
2473                 public virtual bool IsUnmanagedType ()
2474                 {
2475                         return false;
2476                 }
2477
2478                 public void LoadMembers (TypeSpec declaringType, bool onlyTypes, ref MemberCache cache)
2479                 {
2480                         throw new NotSupportedException ("Not supported for compiled definition " + GetSignatureForError ());
2481                 }
2482
2483                 //
2484                 // Public function used to locate types.
2485                 //
2486                 // Returns: Type or null if they type can not be found.
2487                 //
2488                 public override FullNamedExpression LookupNamespaceOrType (string name, int arity, LookupMode mode, Location loc)
2489                 {
2490                         FullNamedExpression e;
2491                         if (arity == 0 && Cache.TryGetValue (name, out e) && mode != LookupMode.IgnoreAccessibility)
2492                                 return e;
2493
2494                         e = null;
2495
2496                         if (arity == 0) {
2497                                 var tp = CurrentTypeParameters;
2498                                 if (tp != null) {
2499                                         TypeParameter tparam = tp.Find (name);
2500                                         if (tparam != null)
2501                                                 e = new TypeParameterExpr (tparam, Location.Null);
2502                                 }
2503                         }
2504
2505                         if (e == null) {
2506                                 TypeSpec t = LookupNestedTypeInHierarchy (name, arity);
2507
2508                                 if (t != null && (t.IsAccessible (this) || mode == LookupMode.IgnoreAccessibility))
2509                                         e = new TypeExpression (t, Location.Null);
2510                                 else {
2511                                         var errors = Compiler.Report.Errors;
2512                                         e = Parent.LookupNamespaceOrType (name, arity, mode, loc);
2513
2514                                         // TODO: LookupNamespaceOrType does more than just lookup. The result
2515                                         // cannot be cached or the error reporting won't happen
2516                                         if (errors != Compiler.Report.Errors)
2517                                                 return e;
2518                                 }
2519                         }
2520
2521                         // TODO MemberCache: How to cache arity stuff ?
2522                         if (arity == 0 && mode == LookupMode.Normal)
2523                                 Cache[name] = e;
2524
2525                         return e;
2526                 }
2527
2528                 TypeSpec LookupNestedTypeInHierarchy (string name, int arity)
2529                 {
2530                         // Has any nested type
2531                         // Does not work, because base type can have
2532                         //if (PartialContainer.Types == null)
2533                         //      return null;
2534
2535                         var container = PartialContainer.CurrentType;
2536                         return MemberCache.FindNestedType (container, name, arity, false);
2537                 }
2538
2539                 public void Mark_HasEquals ()
2540                 {
2541                         cached_method |= CachedMethods.Equals;
2542                 }
2543
2544                 public void Mark_HasGetHashCode ()
2545                 {
2546                         cached_method |= CachedMethods.GetHashCode;
2547                 }
2548
2549                 public override void WriteDebugSymbol (MonoSymbolFile file)
2550                 {
2551                         if (IsPartialPart)
2552                                 return;
2553
2554                         foreach (var m in members) {
2555                                 m.WriteDebugSymbol (file);
2556                         }
2557                 }
2558
2559                 /// <summary>
2560                 /// Method container contains Equals method
2561                 /// </summary>
2562                 public bool HasEquals {
2563                         get {
2564                                 return (cached_method & CachedMethods.Equals) != 0;
2565                         }
2566                 }
2567  
2568                 /// <summary>
2569                 /// Method container contains GetHashCode method
2570                 /// </summary>
2571                 public bool HasGetHashCode {
2572                         get {
2573                                 return (cached_method & CachedMethods.GetHashCode) != 0;
2574                         }
2575                 }
2576
2577                 public bool HasStaticFieldInitializer {
2578                         get {
2579                                 return (cached_method & CachedMethods.HasStaticFieldInitializer) != 0;
2580                         }
2581                         set {
2582                                 if (value)
2583                                         cached_method |= CachedMethods.HasStaticFieldInitializer;
2584                                 else
2585                                         cached_method &= ~CachedMethods.HasStaticFieldInitializer;
2586                         }
2587                 }
2588
2589                 public override string DocCommentHeader {
2590                         get { return "T:"; }
2591                 }
2592         }
2593
2594         public abstract class ClassOrStruct : TypeDefinition
2595         {
2596                 public const TypeAttributes StaticClassAttribute = TypeAttributes.Abstract | TypeAttributes.Sealed;
2597
2598                 SecurityType declarative_security;
2599                 protected Constructor generated_primary_constructor;
2600
2601                 protected ClassOrStruct (TypeContainer parent, MemberName name, Attributes attrs, MemberKind kind)
2602                         : base (parent, name, attrs, kind)
2603                 {
2604                 }
2605
2606                 public ToplevelBlock PrimaryConstructorBlock { get; set; }
2607
2608                 protected override TypeAttributes TypeAttr {
2609                         get {
2610                                 TypeAttributes ta = base.TypeAttr;
2611                                 if (!has_static_constructor)
2612                                         ta |= TypeAttributes.BeforeFieldInit;
2613
2614                                 if (Kind == MemberKind.Class) {
2615                                         ta |= TypeAttributes.AutoLayout | TypeAttributes.Class;
2616                                         if (IsStatic)
2617                                                 ta |= StaticClassAttribute;
2618                                 } else {
2619                                         ta |= TypeAttributes.SequentialLayout;
2620                                 }
2621
2622                                 return ta;
2623                         }
2624                 }
2625
2626                 public override void AddNameToContainer (MemberCore symbol, string name)
2627                 {
2628                         if (!(symbol is Constructor) && symbol.MemberName.Name == MemberName.Name) {
2629                                 if (symbol is TypeParameter) {
2630                                         Report.Error (694, symbol.Location,
2631                                                 "Type parameter `{0}' has same name as containing type, or method",
2632                                                 symbol.GetSignatureForError ());
2633                                         return;
2634                                 }
2635
2636                                 InterfaceMemberBase imb = symbol as InterfaceMemberBase;
2637                                 if (imb == null || !imb.IsExplicitImpl) {
2638                                         Report.SymbolRelatedToPreviousError (this);
2639                                         Report.Error (542, symbol.Location, "`{0}': member names cannot be the same as their enclosing type",
2640                                                 symbol.GetSignatureForError ());
2641                                         return;
2642                                 }
2643                         }
2644
2645                         base.AddNameToContainer (symbol, name);
2646                 }
2647
2648                 public override void ApplyAttributeBuilder (Attribute a, MethodSpec ctor, byte[] cdata, PredefinedAttributes pa)
2649                 {
2650                         if (a.IsValidSecurityAttribute ()) {
2651                                 a.ExtractSecurityPermissionSet (ctor, ref declarative_security);
2652                                 return;
2653                         }
2654
2655                         if (a.Type == pa.StructLayout) {
2656                                 PartialContainer.HasStructLayout = true;
2657                                 if (a.IsExplicitLayoutKind ())
2658                                         PartialContainer.HasExplicitLayout = true;
2659                         }
2660
2661                         if (a.Type == pa.Dynamic) {
2662                                 a.Error_MisusedDynamicAttribute ();
2663                                 return;
2664                         }
2665
2666                         base.ApplyAttributeBuilder (a, ctor, cdata, pa);
2667                 }
2668
2669                 /// <summary>
2670                 /// Defines the default constructors 
2671                 /// </summary>
2672                 protected virtual Constructor DefineDefaultConstructor (bool is_static)
2673                 {
2674                         // The default instance constructor is public
2675                         // If the class is abstract, the default constructor is protected
2676                         // The default static constructor is private
2677
2678                         Modifiers mods;
2679                         ParametersCompiled parameters = null;
2680                         if (is_static) {
2681                                 mods = Modifiers.STATIC | Modifiers.PRIVATE;
2682                                 parameters = ParametersCompiled.EmptyReadOnlyParameters;
2683                         } else {
2684                                 mods = ((ModFlags & Modifiers.ABSTRACT) != 0) ? Modifiers.PROTECTED : Modifiers.PUBLIC;
2685                                 parameters = PrimaryConstructorParameters ?? ParametersCompiled.EmptyReadOnlyParameters;
2686                         }
2687
2688                         var c = new Constructor (this, MemberName.Name, mods, null, parameters, Location);
2689                         if (Kind == MemberKind.Class)
2690                                 c.Initializer = new GeneratedBaseInitializer (Location, PrimaryConstructorBaseArguments);
2691
2692                         if (PrimaryConstructorParameters != null && !is_static) {
2693                                 c.IsPrimaryConstructor = true;
2694                                 c.caching_flags |= Flags.MethodOverloadsExist;
2695                         }
2696                         
2697                         AddConstructor (c, true);
2698                         if (PrimaryConstructorBlock == null) {
2699                                 c.Block = new ToplevelBlock (Compiler, parameters, Location) {
2700                                         IsCompilerGenerated = true
2701                                 };
2702                         } else {
2703                                 c.Block = PrimaryConstructorBlock;
2704                         }
2705
2706                         return c;
2707                 }
2708
2709                 protected override bool DoDefineMembers ()
2710                 {
2711                         CheckProtectedModifier ();
2712
2713                         if (PrimaryConstructorParameters != null) {
2714
2715                                 foreach (Parameter p in PrimaryConstructorParameters.FixedParameters) {
2716                                         if (p.Name == MemberName.Name) {
2717                                                 Report.Error (8039, p.Location, "Primary constructor of type `{0}' has parameter of same name as containing type",
2718                                                         GetSignatureForError ());
2719                                         }
2720
2721                                         if (CurrentTypeParameters != null) {
2722                                                 for (int i = 0; i < CurrentTypeParameters.Count; ++i) {
2723                                                         var tp = CurrentTypeParameters [i];
2724                                                         if (p.Name == tp.Name) {
2725                                                                 Report.Error (8038, p.Location, "Primary constructor of type `{0}' has parameter of same name as type parameter `{1}'",
2726                                                                         GetSignatureForError (), p.GetSignatureForError ());
2727                                                         }
2728                                                 }
2729                                         }
2730                                 }
2731                         }
2732
2733                         base.DoDefineMembers ();
2734
2735                         return true;
2736                 }
2737
2738                 public override void PrepareEmit ()
2739                 {
2740                         var s = this as Struct;
2741                         if (s == null || !s.HasUnmanagedCheckDone) {
2742                                 for (int i = 0; i < Members.Count; ++i) {
2743                                         var f = Members [i] as Field;
2744                                         if (f == null || f.MemberType == null || !f.MemberType.IsPointer)
2745                                                 continue;
2746
2747                                         TypeManager.VerifyUnmanaged (Module, f.MemberType, f.Location);
2748                                 }
2749                         }
2750
2751                         base.PrepareEmit ();
2752                 }
2753
2754                 public override void Emit ()
2755                 {
2756                         if (!has_static_constructor && HasStaticFieldInitializer) {
2757                                 var c = DefineDefaultConstructor (true);
2758                                 c.Define ();
2759                         }
2760
2761                         base.Emit ();
2762
2763                         if (declarative_security != null) {
2764                                 foreach (var de in declarative_security) {
2765 #if STATIC
2766                                         TypeBuilder.__AddDeclarativeSecurity (de);
2767 #else
2768                                         TypeBuilder.AddDeclarativeSecurity (de.Key, de.Value);
2769 #endif
2770                                 }
2771                         }
2772                 }
2773         }
2774
2775
2776         public sealed class Class : ClassOrStruct
2777         {
2778                 const Modifiers AllowedModifiers =
2779                         Modifiers.NEW |
2780                         Modifiers.PUBLIC |
2781                         Modifiers.PROTECTED |
2782                         Modifiers.INTERNAL |
2783                         Modifiers.PRIVATE |
2784                         Modifiers.ABSTRACT |
2785                         Modifiers.SEALED |
2786                         Modifiers.STATIC |
2787                         Modifiers.UNSAFE;
2788                         
2789                 public Class (TypeContainer parent, MemberName name, Modifiers mod, Attributes attrs)
2790                         : base (parent, name, attrs, MemberKind.Class)
2791                 {
2792                         var accmods = IsTopLevel ? Modifiers.INTERNAL : Modifiers.PRIVATE;
2793                         this.ModFlags = ModifiersExtensions.Check (AllowedModifiers, mod, accmods, Location, Report);
2794                         spec = new TypeSpec (Kind, null, this, null, ModFlags);
2795                 }
2796
2797                 public override void Accept (StructuralVisitor visitor)
2798                 {
2799                         visitor.Visit (this);
2800                 }
2801
2802                 public override void SetBaseTypes (List<FullNamedExpression> baseTypes)
2803                 {
2804                         var pmn = MemberName;
2805                         if (pmn.Name == "Object" && !pmn.IsGeneric && Parent.MemberName.Name == "System" && Parent.MemberName.Left == null)
2806                                 Report.Error (537, Location,
2807                                         "The class System.Object cannot have a base class or implement an interface.");
2808
2809                         base.SetBaseTypes (baseTypes);
2810                 }
2811
2812                 public override void ApplyAttributeBuilder (Attribute a, MethodSpec ctor, byte[] cdata, PredefinedAttributes pa)
2813                 {
2814                         if (a.Type == pa.AttributeUsage) {
2815                                 if (!BaseType.IsAttribute && spec.BuiltinType != BuiltinTypeSpec.Type.Attribute) {
2816                                         Report.Error (641, a.Location, "Attribute `{0}' is only valid on classes derived from System.Attribute", a.GetSignatureForError ());
2817                                 }
2818                         }
2819
2820                         if (a.Type == pa.Conditional && !BaseType.IsAttribute) {
2821                                 Report.Error (1689, a.Location, "Attribute `System.Diagnostics.ConditionalAttribute' is only valid on methods or attribute classes");
2822                                 return;
2823                         }
2824
2825                         if (a.Type == pa.ComImport && !attributes.Contains (pa.Guid)) {
2826                                 a.Error_MissingGuidAttribute ();
2827                                 return;
2828                         }
2829
2830                         if (a.Type == pa.Extension) {
2831                                 a.Error_MisusedExtensionAttribute ();
2832                                 return;
2833                         }
2834
2835                         if (a.Type.IsConditionallyExcluded (this))
2836                                 return;
2837
2838                         base.ApplyAttributeBuilder (a, ctor, cdata, pa);
2839                 }
2840
2841                 public override AttributeTargets AttributeTargets {
2842                         get {
2843                                 return AttributeTargets.Class;
2844                         }
2845                 }
2846
2847                 protected override bool DoDefineMembers ()
2848                 {
2849                         if ((ModFlags & Modifiers.ABSTRACT) == Modifiers.ABSTRACT && (ModFlags & (Modifiers.SEALED | Modifiers.STATIC)) != 0) {
2850                                 Report.Error (418, Location, "`{0}': an abstract class cannot be sealed or static", GetSignatureForError ());
2851                         }
2852
2853                         if ((ModFlags & (Modifiers.SEALED | Modifiers.STATIC)) == (Modifiers.SEALED | Modifiers.STATIC)) {
2854                                 Report.Error (441, Location, "`{0}': a class cannot be both static and sealed", GetSignatureForError ());
2855                         }
2856
2857                         if (IsStatic) {
2858                                 if (PrimaryConstructorParameters != null) {
2859                                         Report.Error (-800, Location, "`{0}': Static classes cannot have primary constructor", GetSignatureForError ());
2860                                         PrimaryConstructorParameters = null;
2861                                 }
2862
2863                                 foreach (var m in Members) {
2864                                         if (m is Operator) {
2865                                                 Report.Error (715, m.Location, "`{0}': Static classes cannot contain user-defined operators", m.GetSignatureForError ());
2866                                                 continue;
2867                                         }
2868
2869                                         if (m is Destructor) {
2870                                                 Report.Error (711, m.Location, "`{0}': Static classes cannot contain destructor", GetSignatureForError ());
2871                                                 continue;
2872                                         }
2873
2874                                         if (m is Indexer) {
2875                                                 Report.Error (720, m.Location, "`{0}': cannot declare indexers in a static class", m.GetSignatureForError ());
2876                                                 continue;
2877                                         }
2878
2879                                         if ((m.ModFlags & Modifiers.STATIC) != 0 || m is TypeContainer)
2880                                                 continue;
2881
2882                                         if (m is Constructor) {
2883                                                 Report.Error (710, m.Location, "`{0}': Static classes cannot have instance constructors", GetSignatureForError ());
2884                                                 continue;
2885                                         }
2886
2887                                         Report.Error (708, m.Location, "`{0}': cannot declare instance members in a static class", m.GetSignatureForError ());
2888                                 }
2889                         } else {
2890                                 if (!PartialContainer.HasInstanceConstructor || PrimaryConstructorParameters != null)
2891                                         generated_primary_constructor = DefineDefaultConstructor (false);
2892                         }
2893
2894                         return base.DoDefineMembers ();
2895                 }
2896
2897                 public override void Emit ()
2898                 {
2899                         base.Emit ();
2900
2901                         if ((ModFlags & Modifiers.METHOD_EXTENSION) != 0)
2902                                 Module.PredefinedAttributes.Extension.EmitAttribute (TypeBuilder);
2903
2904                         if (base_type != null && base_type.HasDynamicElement) {
2905                                 Module.PredefinedAttributes.Dynamic.EmitAttribute (TypeBuilder, base_type, Location);
2906                         }
2907                 }
2908
2909                 public override void GetCompletionStartingWith (string prefix, List<string> results)
2910                 {
2911                         base.GetCompletionStartingWith (prefix, results);
2912
2913                         var bt = base_type;
2914                         while (bt != null) {
2915                                 results.AddRange (MemberCache.GetCompletitionMembers (this, bt, prefix).Where (l => l.IsStatic).Select (l => l.Name));
2916                                 bt = bt.BaseType;
2917                         }
2918                 }
2919
2920                 protected override TypeSpec[] ResolveBaseTypes (out FullNamedExpression base_class)
2921                 {
2922                         var ifaces = base.ResolveBaseTypes (out base_class);
2923
2924                         if (base_class == null) {
2925                                 if (spec.BuiltinType != BuiltinTypeSpec.Type.Object)
2926                                         base_type = Compiler.BuiltinTypes.Object;
2927                         } else {
2928                                 if (base_type.IsGenericParameter){
2929                                         Report.Error (689, base_class.Location, "`{0}': Cannot derive from type parameter `{1}'",
2930                                                 GetSignatureForError (), base_type.GetSignatureForError ());
2931                                 } else if (base_type.IsStatic) {
2932                                         Report.SymbolRelatedToPreviousError (base_type);
2933                                         Report.Error (709, Location, "`{0}': Cannot derive from static class `{1}'",
2934                                                 GetSignatureForError (), base_type.GetSignatureForError ());
2935                                 } else if (base_type.IsSealed) {
2936                                         Report.SymbolRelatedToPreviousError (base_type);
2937                                         Report.Error (509, Location, "`{0}': cannot derive from sealed type `{1}'",
2938                                                 GetSignatureForError (), base_type.GetSignatureForError ());
2939                                 } else if (PartialContainer.IsStatic && base_type.BuiltinType != BuiltinTypeSpec.Type.Object) {
2940                                         Report.Error (713, Location, "Static class `{0}' cannot derive from type `{1}'. Static classes must derive from object",
2941                                                 GetSignatureForError (), base_type.GetSignatureForError ());
2942                                 }
2943
2944                                 switch (base_type.BuiltinType) {
2945                                 case BuiltinTypeSpec.Type.Enum:
2946                                 case BuiltinTypeSpec.Type.ValueType:
2947                                 case BuiltinTypeSpec.Type.MulticastDelegate:
2948                                 case BuiltinTypeSpec.Type.Delegate:
2949                                 case BuiltinTypeSpec.Type.Array:
2950                                         if (!(spec is BuiltinTypeSpec)) {
2951                                                 Report.Error (644, Location, "`{0}' cannot derive from special class `{1}'",
2952                                                         GetSignatureForError (), base_type.GetSignatureForError ());
2953
2954                                                 base_type = Compiler.BuiltinTypes.Object;
2955                                         }
2956                                         break;
2957                                 }
2958
2959                                 if (!IsAccessibleAs (base_type)) {
2960                                         Report.SymbolRelatedToPreviousError (base_type);
2961                                         Report.Error (60, Location, "Inconsistent accessibility: base class `{0}' is less accessible than class `{1}'",
2962                                                 base_type.GetSignatureForError (), GetSignatureForError ());
2963                                 }
2964                         }
2965
2966                         if (PartialContainer.IsStatic && ifaces != null) {
2967                                 foreach (var t in ifaces)
2968                                         Report.SymbolRelatedToPreviousError (t);
2969                                 Report.Error (714, Location, "Static class `{0}' cannot implement interfaces", GetSignatureForError ());
2970                         }
2971
2972                         return ifaces;
2973                 }
2974
2975                 /// Search for at least one defined condition in ConditionalAttribute of attribute class
2976                 /// Valid only for attribute classes.
2977                 public override string[] ConditionalConditions ()
2978                 {
2979                         if ((caching_flags & (Flags.Excluded_Undetected | Flags.Excluded)) == 0)
2980                                 return null;
2981
2982                         caching_flags &= ~Flags.Excluded_Undetected;
2983
2984                         if (OptAttributes == null)
2985                                 return null;
2986
2987                         Attribute[] attrs = OptAttributes.SearchMulti (Module.PredefinedAttributes.Conditional);
2988                         if (attrs == null)
2989                                 return null;
2990
2991                         string[] conditions = new string[attrs.Length];
2992                         for (int i = 0; i < conditions.Length; ++i)
2993                                 conditions[i] = attrs[i].GetConditionalAttributeValue ();
2994
2995                         caching_flags |= Flags.Excluded;
2996                         return conditions;
2997                 }
2998         }
2999
3000         public sealed class Struct : ClassOrStruct
3001         {
3002                 bool is_unmanaged, has_unmanaged_check_done, requires_delayed_unmanagedtype_check;
3003                 bool InTransit;
3004
3005                 // <summary>
3006                 //   Modifiers allowed in a struct declaration
3007                 // </summary>
3008                 const Modifiers AllowedModifiers =
3009                         Modifiers.NEW       |
3010                         Modifiers.PUBLIC    |
3011                         Modifiers.PROTECTED |
3012                         Modifiers.INTERNAL  |
3013                         Modifiers.UNSAFE    |
3014                         Modifiers.PRIVATE;
3015
3016                 public Struct (TypeContainer parent, MemberName name, Modifiers mod, Attributes attrs)
3017                         : base (parent, name, attrs, MemberKind.Struct)
3018                 {
3019                         var accmods = IsTopLevel ? Modifiers.INTERNAL : Modifiers.PRIVATE;                      
3020                         this.ModFlags = ModifiersExtensions.Check (AllowedModifiers, mod, accmods, Location, Report) | Modifiers.SEALED ;
3021                         spec = new TypeSpec (Kind, null, this, null, ModFlags);
3022                 }
3023
3024                 public override AttributeTargets AttributeTargets {
3025                         get {
3026                                 return AttributeTargets.Struct;
3027                         }
3028                 }
3029
3030                 public override void Accept (StructuralVisitor visitor)
3031                 {
3032                         visitor.Visit (this);
3033                 }
3034
3035                 public override void ApplyAttributeBuilder (Attribute a, MethodSpec ctor, byte[] cdata, PredefinedAttributes pa)
3036                 {
3037                         base.ApplyAttributeBuilder (a, ctor, cdata, pa);
3038
3039                         //
3040                         // When struct constains fixed fixed and struct layout has explicitly
3041                         // set CharSet, its value has to be propagated to compiler generated
3042                         // fixed types
3043                         //
3044                         if (a.Type == pa.StructLayout) {
3045                                 var value = a.GetNamedValue ("CharSet");
3046                                 if (value == null)
3047                                         return;
3048
3049                                 for (int i = 0; i < Members.Count; ++i) {
3050                                         FixedField ff = Members [i] as FixedField;
3051                                         if (ff == null)
3052                                                 continue;
3053
3054                                         ff.CharSetValue = (CharSet) System.Enum.Parse (typeof (CharSet), value.GetValue ().ToString ());
3055                                 }
3056                         }
3057                 }
3058
3059                 bool CheckStructCycles ()
3060                 {
3061                         if (InTransit)
3062                                 return false;
3063
3064                         InTransit = true;
3065                         foreach (var member in Members) {
3066                                 var field = member as Field;
3067                                 if (field == null)
3068                                         continue;
3069
3070                                 TypeSpec ftype = field.Spec.MemberType;
3071                                 if (!ftype.IsStruct)
3072                                         continue;
3073
3074                                 if (ftype is BuiltinTypeSpec)
3075                                         continue;
3076
3077                                 foreach (var targ in ftype.TypeArguments) {
3078                                         if (!CheckFieldTypeCycle (targ)) {
3079                                                 Report.Error (523, field.Location,
3080                                                         "Struct member `{0}' of type `{1}' causes a cycle in the struct layout",
3081                                                         field.GetSignatureForError (), ftype.GetSignatureForError ());
3082                                                 break;
3083                                         }
3084                                 }
3085
3086                                 //
3087                                 // Static fields of exactly same type are allowed
3088                                 //
3089                                 if (field.IsStatic && ftype == CurrentType)
3090                                         continue;
3091
3092                                 if (!CheckFieldTypeCycle (ftype)) {
3093                                         Report.Error (523, field.Location,
3094                                                 "Struct member `{0}' of type `{1}' causes a cycle in the struct layout",
3095                                                 field.GetSignatureForError (), ftype.GetSignatureForError ());
3096                                         break;
3097                                 }
3098                         }
3099
3100                         InTransit = false;
3101                         return true;
3102                 }
3103
3104                 static bool CheckFieldTypeCycle (TypeSpec ts)
3105                 {
3106                         var fts = ts.MemberDefinition as Struct;
3107                         if (fts == null)
3108                                 return true;
3109
3110                         return fts.CheckStructCycles ();
3111                 }
3112
3113                 protected override bool DoDefineMembers ()
3114                 {
3115                         var res = base.DoDefineMembers ();
3116
3117                         if (PrimaryConstructorParameters != null || (initialized_fields != null && !HasUserDefaultConstructor ())) {
3118                                 generated_primary_constructor = DefineDefaultConstructor (false);
3119                                 generated_primary_constructor.Define ();
3120                         }
3121
3122                         return res;
3123                 }
3124
3125                 public override void Emit ()
3126                 {
3127                         CheckStructCycles ();
3128
3129                         base.Emit ();
3130                 }
3131
3132                 public bool HasUnmanagedCheckDone {
3133                         get {
3134                                 return has_unmanaged_check_done;
3135                         }
3136                 }
3137
3138                 bool HasUserDefaultConstructor ()
3139                 {
3140                         foreach (var m in PartialContainer.Members) {
3141                                 var c = m as Constructor;
3142                                 if (c == null)
3143                                         continue;
3144
3145                                 if (!c.IsStatic && c.ParameterInfo.IsEmpty)
3146                                         return true;
3147                         }
3148
3149                         return false;
3150                 }
3151
3152                 public override bool IsUnmanagedType ()
3153                 {
3154                         if (has_unmanaged_check_done)
3155                                 return is_unmanaged;
3156
3157                         if (requires_delayed_unmanagedtype_check)
3158                                 return true;
3159
3160                         var parent_def = Parent.PartialContainer;
3161                         if (parent_def != null && parent_def.IsGenericOrParentIsGeneric) {
3162                                 has_unmanaged_check_done = true;
3163                                 return false;
3164                         }
3165
3166                         if (HasInstanceField) {
3167                                 requires_delayed_unmanagedtype_check = true;
3168
3169                                 foreach (var member in Members) {
3170                                         var f = member as Field;
3171                                         if (f == null)
3172                                                 continue;
3173
3174                                         if (f.IsStatic)
3175                                                 continue;
3176
3177                                         // It can happen when recursive unmanaged types are defined
3178                                         // struct S { S* s; }
3179                                         TypeSpec mt = f.MemberType;
3180                                         if (mt == null) {
3181                                                 return true;
3182                                         }
3183
3184                                         if (mt.IsUnmanaged)
3185                                                 continue;
3186
3187                                         has_unmanaged_check_done = true;
3188                                         return false;
3189                                 }
3190
3191                                 has_unmanaged_check_done = true;
3192                         }
3193
3194                         is_unmanaged = true;
3195                         return true;
3196                 }
3197
3198                 protected override TypeSpec[] ResolveBaseTypes (out FullNamedExpression base_class)
3199                 {
3200                         var ifaces = base.ResolveBaseTypes (out base_class);
3201                         base_type = Compiler.BuiltinTypes.ValueType;
3202                         return ifaces;
3203                 }
3204         }
3205
3206         /// <summary>
3207         ///   Interfaces
3208         /// </summary>
3209         public sealed class Interface : TypeDefinition {
3210
3211                 /// <summary>
3212                 ///   Modifiers allowed in a class declaration
3213                 /// </summary>
3214                 const Modifiers AllowedModifiers =
3215                         Modifiers.NEW       |
3216                         Modifiers.PUBLIC    |
3217                         Modifiers.PROTECTED |
3218                         Modifiers.INTERNAL  |
3219                         Modifiers.UNSAFE    |
3220                         Modifiers.PRIVATE;
3221
3222                 public Interface (TypeContainer parent, MemberName name, Modifiers mod, Attributes attrs)
3223                         : base (parent, name, attrs, MemberKind.Interface)
3224                 {
3225                         var accmods = IsTopLevel ? Modifiers.INTERNAL : Modifiers.PRIVATE;
3226
3227                         this.ModFlags = ModifiersExtensions.Check (AllowedModifiers, mod, accmods, name.Location, Report);
3228                         spec = new TypeSpec (Kind, null, this, null, ModFlags);
3229                 }
3230
3231                 #region Properties
3232
3233                 public override AttributeTargets AttributeTargets {
3234                         get {
3235                                 return AttributeTargets.Interface;
3236                         }
3237                 }
3238
3239                 protected override TypeAttributes TypeAttr {
3240                         get {
3241                                 const TypeAttributes DefaultTypeAttributes =
3242                                         TypeAttributes.AutoLayout |
3243                                         TypeAttributes.Abstract |
3244                                         TypeAttributes.Interface;
3245
3246                                 return base.TypeAttr | DefaultTypeAttributes;
3247                         }
3248                 }
3249
3250                 #endregion
3251
3252                 public override void Accept (StructuralVisitor visitor)
3253                 {
3254                         visitor.Visit (this);
3255                 }
3256
3257                 public override void ApplyAttributeBuilder (Attribute a, MethodSpec ctor, byte[] cdata, PredefinedAttributes pa)
3258                 {
3259                         if (a.Type == pa.ComImport && !attributes.Contains (pa.Guid)) {
3260                                 a.Error_MissingGuidAttribute ();
3261                                 return;
3262                         }
3263
3264                         base.ApplyAttributeBuilder (a, ctor, cdata, pa);
3265                 }
3266
3267                 protected override bool VerifyClsCompliance ()
3268                 {
3269                         if (!base.VerifyClsCompliance ())
3270                                 return false;
3271
3272                         if (iface_exprs != null) {
3273                                 foreach (var iface in iface_exprs) {
3274                                         if (iface.IsCLSCompliant ())
3275                                                 continue;
3276
3277                                         Report.SymbolRelatedToPreviousError (iface);
3278                                         Report.Warning (3027, 1, Location, "`{0}' is not CLS-compliant because base interface `{1}' is not CLS-compliant",
3279                                                 GetSignatureForError (), iface.GetSignatureForError ());
3280                                 }
3281                         }
3282
3283                         return true;
3284                 }
3285         }
3286
3287         public abstract class InterfaceMemberBase : MemberBase
3288         {
3289                 //
3290                 // Common modifiers allowed in a class declaration
3291                 //
3292                 protected const Modifiers AllowedModifiersClass =
3293                         Modifiers.NEW |
3294                         Modifiers.PUBLIC |
3295                         Modifiers.PROTECTED |
3296                         Modifiers.INTERNAL |
3297                         Modifiers.PRIVATE |
3298                         Modifiers.STATIC |
3299                         Modifiers.VIRTUAL |
3300                         Modifiers.SEALED |
3301                         Modifiers.OVERRIDE |
3302                         Modifiers.ABSTRACT |
3303                         Modifiers.UNSAFE |
3304                         Modifiers.EXTERN;
3305
3306                 //
3307                 // Common modifiers allowed in a struct declaration
3308                 //
3309                 protected const Modifiers AllowedModifiersStruct =
3310                         Modifiers.NEW |
3311                         Modifiers.PUBLIC |
3312                         Modifiers.PROTECTED |
3313                         Modifiers.INTERNAL |
3314                         Modifiers.PRIVATE |
3315                         Modifiers.STATIC |
3316                         Modifiers.OVERRIDE |
3317                         Modifiers.UNSAFE |
3318                         Modifiers.EXTERN;
3319
3320                 //
3321                 // Common modifiers allowed in a interface declaration
3322                 //
3323                 protected const Modifiers AllowedModifiersInterface =
3324                         Modifiers.NEW |
3325                         Modifiers.UNSAFE;
3326
3327                 //
3328                 // Whether this is an interface member.
3329                 //
3330                 public bool IsInterface;
3331
3332                 //
3333                 // If true, this is an explicit interface implementation
3334                 //
3335                 public readonly bool IsExplicitImpl;
3336
3337                 protected bool is_external_implementation;
3338
3339                 //
3340                 // The interface type we are explicitly implementing
3341                 //
3342                 public TypeSpec InterfaceType;
3343
3344                 //
3345                 // The method we're overriding if this is an override method.
3346                 //
3347                 protected MethodSpec base_method;
3348
3349                 readonly Modifiers explicit_mod_flags;
3350                 public MethodAttributes flags;
3351
3352                 protected InterfaceMemberBase (TypeDefinition parent, FullNamedExpression type, Modifiers mod, Modifiers allowed_mod, MemberName name, Attributes attrs)
3353                         : base (parent, type, mod, allowed_mod, Modifiers.PRIVATE, name, attrs)
3354                 {
3355                         IsInterface = parent.Kind == MemberKind.Interface;
3356                         IsExplicitImpl = (MemberName.ExplicitInterface != null);
3357                         explicit_mod_flags = mod;
3358                 }
3359
3360                 public abstract Variance ExpectedMemberTypeVariance { get; }
3361                 
3362                 protected override bool CheckBase ()
3363                 {
3364                         if (!base.CheckBase ())
3365                                 return false;
3366
3367                         if ((caching_flags & Flags.MethodOverloadsExist) != 0)
3368                                 CheckForDuplications ();
3369                         
3370                         if (IsExplicitImpl)
3371                                 return true;
3372
3373                         // For System.Object only
3374                         if (Parent.BaseType == null)
3375                                 return true;
3376
3377                         MemberSpec candidate;
3378                         bool overrides = false;
3379                         var base_member = FindBaseMember (out candidate, ref overrides);
3380
3381                         if ((ModFlags & Modifiers.OVERRIDE) != 0) {
3382                                 if (base_member == null) {
3383                                         if (candidate == null) {
3384                                                 if (this is Method && ((Method)this).ParameterInfo.IsEmpty && MemberName.Name == Destructor.MetadataName && MemberName.Arity == 0) {
3385                                                         Report.Error (249, Location, "Do not override `{0}'. Use destructor syntax instead",
3386                                                                 "object.Finalize()");
3387                                                 } else {
3388                                                         Report.Error (115, Location, "`{0}' is marked as an override but no suitable {1} found to override",
3389                                                                 GetSignatureForError (), SimpleName.GetMemberType (this));
3390                                                 }
3391                                         } else {
3392                                                 Report.SymbolRelatedToPreviousError (candidate);
3393                                                 if (this is Event)
3394                                                         Report.Error (72, Location, "`{0}': cannot override because `{1}' is not an event",
3395                                                                 GetSignatureForError (), TypeManager.GetFullNameSignature (candidate));
3396                                                 else if (this is PropertyBase)
3397                                                         Report.Error (544, Location, "`{0}': cannot override because `{1}' is not a property",
3398                                                                 GetSignatureForError (), TypeManager.GetFullNameSignature (candidate));
3399                                                 else
3400                                                         Report.Error (505, Location, "`{0}': cannot override because `{1}' is not a method",
3401                                                                 GetSignatureForError (), TypeManager.GetFullNameSignature (candidate));
3402                                         }
3403
3404                                         return false;
3405                                 }
3406
3407                                 //
3408                                 // Handles ambiguous overrides
3409                                 //
3410                                 if (candidate != null) {
3411                                         Report.SymbolRelatedToPreviousError (candidate);
3412                                         Report.SymbolRelatedToPreviousError (base_member);
3413
3414                                         // Get member definition for error reporting
3415                                         var m1 = MemberCache.GetMember (base_member.DeclaringType.GetDefinition (), base_member);
3416                                         var m2 = MemberCache.GetMember (candidate.DeclaringType.GetDefinition (), candidate);
3417
3418                                         Report.Error (462, Location,
3419                                                 "`{0}' cannot override inherited members `{1}' and `{2}' because they have the same signature when used in type `{3}'",
3420                                                 GetSignatureForError (), m1.GetSignatureForError (), m2.GetSignatureForError (), Parent.GetSignatureForError ());
3421                                 }
3422
3423                                 if (!CheckOverrideAgainstBase (base_member))
3424                                         return false;
3425
3426                                 ObsoleteAttribute oa = base_member.GetAttributeObsolete ();
3427                                 if (oa != null) {
3428                                         if (OptAttributes == null || !OptAttributes.Contains (Module.PredefinedAttributes.Obsolete)) {
3429                                                 Report.SymbolRelatedToPreviousError (base_member);
3430                                                 Report.Warning (672, 1, Location, "Member `{0}' overrides obsolete member `{1}'. Add the Obsolete attribute to `{0}'",
3431                                                         GetSignatureForError (), base_member.GetSignatureForError ());
3432                                         }
3433                                 } else {
3434                                         if (OptAttributes != null && OptAttributes.Contains (Module.PredefinedAttributes.Obsolete)) {
3435                                                 Report.SymbolRelatedToPreviousError (base_member);
3436                                                 Report.Warning (809, 1, Location, "Obsolete member `{0}' overrides non-obsolete member `{1}'",
3437                                                         GetSignatureForError (), base_member.GetSignatureForError ());
3438                                         }
3439                                 }
3440
3441                                 base_method = base_member as MethodSpec;
3442                                 return true;
3443                         }
3444
3445                         if (base_member == null && candidate != null && (!(candidate is IParametersMember) || !(this is IParametersMember)))
3446                                 base_member = candidate;
3447
3448                         if (base_member == null) {
3449                                 if ((ModFlags & Modifiers.NEW) != 0) {
3450                                         if (base_member == null) {
3451                                                 Report.Warning (109, 4, Location, "The member `{0}' does not hide an inherited member. The new keyword is not required",
3452                                                         GetSignatureForError ());
3453                                         }
3454                                 }
3455                         } else {
3456                                 if ((ModFlags & Modifiers.NEW) == 0) {
3457                                         ModFlags |= Modifiers.NEW;
3458                                         if (!IsCompilerGenerated) {
3459                                                 Report.SymbolRelatedToPreviousError (base_member);
3460                                                 if ((base_member.Kind & MemberKind.NestedMask) == 0 && !IsInterface && (base_member.Modifiers & (Modifiers.ABSTRACT | Modifiers.VIRTUAL | Modifiers.OVERRIDE)) != 0) {
3461                                                         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",
3462                                                                 GetSignatureForError (), base_member.GetSignatureForError ());
3463                                                 } else {
3464                                                         Report.Warning (108, 2, Location, "`{0}' hides inherited member `{1}'. Use the new keyword if hiding was intended",
3465                                                                 GetSignatureForError (), base_member.GetSignatureForError ());
3466                                                 }
3467                                         }
3468                                 }
3469
3470                                 if (!IsInterface && base_member.IsAbstract && !overrides && !IsStatic) {
3471                                         switch (base_member.Kind) {
3472                                         case MemberKind.Event:
3473                                         case MemberKind.Indexer:
3474                                         case MemberKind.Method:
3475                                         case MemberKind.Property:
3476                                                 Report.SymbolRelatedToPreviousError (base_member);
3477                                                 Report.Error (533, Location, "`{0}' hides inherited abstract member `{1}'",
3478                                                         GetSignatureForError (), base_member.GetSignatureForError ());
3479                                                 break;
3480                                         }
3481                                 }
3482                         }
3483
3484                         return true;
3485                 }
3486
3487                 protected virtual bool CheckForDuplications ()
3488                 {
3489                         return Parent.MemberCache.CheckExistingMembersOverloads (this, ParametersCompiled.EmptyReadOnlyParameters);
3490                 }
3491
3492                 //
3493                 // Performs various checks on the MethodInfo `mb' regarding the modifier flags
3494                 // that have been defined.
3495                 //
3496                 protected virtual bool CheckOverrideAgainstBase (MemberSpec base_member)
3497                 {
3498                         bool ok = true;
3499
3500                         if ((base_member.Modifiers & (Modifiers.ABSTRACT | Modifiers.VIRTUAL | Modifiers.OVERRIDE)) == 0) {
3501                                 Report.SymbolRelatedToPreviousError (base_member);
3502                                 Report.Error (506, Location,
3503                                         "`{0}': cannot override inherited member `{1}' because it is not marked virtual, abstract or override",
3504                                          GetSignatureForError (), TypeManager.CSharpSignature (base_member));
3505                                 ok = false;
3506                         }
3507
3508                         // Now we check that the overriden method is not final  
3509                         if ((base_member.Modifiers & Modifiers.SEALED) != 0) {
3510                                 Report.SymbolRelatedToPreviousError (base_member);
3511                                 Report.Error (239, Location, "`{0}': cannot override inherited member `{1}' because it is sealed",
3512                                                           GetSignatureForError (), TypeManager.CSharpSignature (base_member));
3513                                 ok = false;
3514                         }
3515
3516                         var base_member_type = ((IInterfaceMemberSpec) base_member).MemberType;
3517                         if (!TypeSpecComparer.Override.IsEqual (MemberType, base_member_type)) {
3518                                 Report.SymbolRelatedToPreviousError (base_member);
3519                                 if (this is PropertyBasedMember) {
3520                                         Report.Error (1715, Location, "`{0}': type must be `{1}' to match overridden member `{2}'",
3521                                                 GetSignatureForError (), base_member_type.GetSignatureForError (), base_member.GetSignatureForError ());
3522                                 } else {
3523                                         Report.Error (508, Location, "`{0}': return type must be `{1}' to match overridden member `{2}'",
3524                                                 GetSignatureForError (), base_member_type.GetSignatureForError (), base_member.GetSignatureForError ());
3525                                 }
3526                                 ok = false;
3527                         }
3528
3529                         return ok;
3530                 }
3531
3532                 protected static bool CheckAccessModifiers (MemberCore this_member, MemberSpec base_member)
3533                 {
3534                         var thisp = this_member.ModFlags & Modifiers.AccessibilityMask;
3535                         var base_classp = base_member.Modifiers & Modifiers.AccessibilityMask;
3536
3537                         if ((base_classp & (Modifiers.PROTECTED | Modifiers.INTERNAL)) == (Modifiers.PROTECTED | Modifiers.INTERNAL)) {
3538                                 //
3539                                 // It must be at least "protected"
3540                                 //
3541                                 if ((thisp & Modifiers.PROTECTED) == 0) {
3542                                         return false;
3543                                 }
3544
3545                                 //
3546                                 // when overriding protected internal, the method can be declared
3547                                 // protected internal only within the same assembly or assembly
3548                                 // which has InternalsVisibleTo
3549                                 //
3550                                 if ((thisp & Modifiers.INTERNAL) != 0) {
3551                                         return base_member.DeclaringType.MemberDefinition.IsInternalAsPublic (this_member.Module.DeclaringAssembly);
3552                                 }
3553
3554                                 //
3555                                 // protected overriding protected internal inside same assembly
3556                                 // requires internal modifier as well
3557                                 //
3558                                 if (base_member.DeclaringType.MemberDefinition.IsInternalAsPublic (this_member.Module.DeclaringAssembly)) {
3559                                         return false;
3560                                 }
3561
3562                                 return true;
3563                         }
3564
3565                         return thisp == base_classp;
3566                 }
3567
3568                 public override bool Define ()
3569                 {
3570                         if (IsInterface) {
3571                                 ModFlags = Modifiers.PUBLIC | Modifiers.ABSTRACT |
3572                                         Modifiers.VIRTUAL | (ModFlags & (Modifiers.UNSAFE | Modifiers.NEW));
3573
3574                                 flags = MethodAttributes.Public |
3575                                         MethodAttributes.Abstract |
3576                                         MethodAttributes.HideBySig |
3577                                         MethodAttributes.NewSlot |
3578                                         MethodAttributes.Virtual;
3579                         } else {
3580                                 Parent.PartialContainer.MethodModifiersValid (this);
3581
3582                                 flags = ModifiersExtensions.MethodAttr (ModFlags);
3583                         }
3584
3585                         if (IsExplicitImpl) {
3586                                 InterfaceType = MemberName.ExplicitInterface.ResolveAsType (Parent);
3587                                 if (InterfaceType == null)
3588                                         return false;
3589
3590                                 if ((ModFlags & Modifiers.PARTIAL) != 0) {
3591                                         Report.Error (754, Location, "A partial method `{0}' cannot explicitly implement an interface",
3592                                                 GetSignatureForError ());
3593                                 }
3594
3595                                 if (!InterfaceType.IsInterface) {
3596                                         Report.SymbolRelatedToPreviousError (InterfaceType);
3597                                         Report.Error (538, Location, "The type `{0}' in explicit interface declaration is not an interface",
3598                                                 InterfaceType.GetSignatureForError ());
3599                                 } else {
3600                                         Parent.PartialContainer.VerifyImplements (this);
3601                                 }
3602
3603                                 Modifiers allowed_explicit = Modifiers.AllowedExplicitImplFlags;
3604                                 if (this is Method)
3605                                         allowed_explicit |= Modifiers.ASYNC;
3606
3607                                 ModifiersExtensions.Check (allowed_explicit, explicit_mod_flags, 0, Location, Report);
3608                         }
3609
3610                         return base.Define ();
3611                 }
3612
3613                 protected bool DefineParameters (ParametersCompiled parameters)
3614                 {
3615                         if (!parameters.Resolve (this))
3616                                 return false;
3617
3618                         bool error = false;
3619                         for (int i = 0; i < parameters.Count; ++i) {
3620                                 Parameter p = parameters [i];
3621
3622                                 if (p.HasDefaultValue && (IsExplicitImpl || this is Operator || (this is Indexer && parameters.Count == 1)))
3623                                         p.Warning_UselessOptionalParameter (Report);
3624
3625                                 if (p.CheckAccessibility (this))
3626                                         continue;
3627
3628                                 TypeSpec t = parameters.Types [i];
3629                                 Report.SymbolRelatedToPreviousError (t);
3630                                 if (this is Indexer)
3631                                         Report.Error (55, Location,
3632                                                       "Inconsistent accessibility: parameter type `{0}' is less accessible than indexer `{1}'",
3633                                                       t.GetSignatureForError (), GetSignatureForError ());
3634                                 else if (this is Operator)
3635                                         Report.Error (57, Location,
3636                                                       "Inconsistent accessibility: parameter type `{0}' is less accessible than operator `{1}'",
3637                                                       t.GetSignatureForError (), GetSignatureForError ());
3638                                 else
3639                                         Report.Error (51, Location,
3640                                                 "Inconsistent accessibility: parameter type `{0}' is less accessible than method `{1}'",
3641                                                 t.GetSignatureForError (), GetSignatureForError ());
3642                                 error = true;
3643                         }
3644                         return !error;
3645                 }
3646
3647                 protected override void DoMemberTypeDependentChecks ()
3648                 {
3649                         base.DoMemberTypeDependentChecks ();
3650
3651                         VarianceDecl.CheckTypeVariance (MemberType, ExpectedMemberTypeVariance, this);
3652                 }
3653
3654                 public override void Emit()
3655                 {
3656                         // for extern static method must be specified either DllImport attribute or MethodImplAttribute.
3657                         // We are more strict than csc and report this as an error because SRE does not allow emit that
3658                         if ((ModFlags & Modifiers.EXTERN) != 0 && !is_external_implementation && (OptAttributes == null || !OptAttributes.HasResolveError ())) {
3659                                 if (this is Constructor) {
3660                                         Report.Warning (824, 1, Location,
3661                                                 "Constructor `{0}' is marked `external' but has no external implementation specified", GetSignatureForError ());
3662                                 } else {
3663                                         Report.Warning (626, 1, Location,
3664                                                 "`{0}' is marked as an external but has no DllImport attribute. Consider adding a DllImport attribute to specify the external implementation",
3665                                                 GetSignatureForError ());
3666                                 }
3667                         }
3668
3669                         base.Emit ();
3670                 }
3671
3672                 public override bool EnableOverloadChecks (MemberCore overload)
3673                 {
3674                         //
3675                         // Two members can differ in their explicit interface
3676                         // type parameter only
3677                         //
3678                         InterfaceMemberBase imb = overload as InterfaceMemberBase;
3679                         if (imb != null && imb.IsExplicitImpl) {
3680                                 if (IsExplicitImpl) {
3681                                         caching_flags |= Flags.MethodOverloadsExist;
3682                                 }
3683                                 return true;
3684                         }
3685
3686                         return IsExplicitImpl;
3687                 }
3688
3689                 protected void Error_CannotChangeAccessModifiers (MemberCore member, MemberSpec base_member)
3690                 {
3691                         var base_modifiers = base_member.Modifiers;
3692
3693                         // Remove internal modifier from types which are not internally accessible
3694                         if ((base_modifiers & Modifiers.AccessibilityMask) == (Modifiers.PROTECTED | Modifiers.INTERNAL) &&
3695                                 !base_member.DeclaringType.MemberDefinition.IsInternalAsPublic (member.Module.DeclaringAssembly))
3696                                 base_modifiers = Modifiers.PROTECTED;
3697
3698                         Report.SymbolRelatedToPreviousError (base_member);
3699                         Report.Error (507, member.Location,
3700                                 "`{0}': cannot change access modifiers when overriding `{1}' inherited member `{2}'",
3701                                 member.GetSignatureForError (),
3702                                 ModifiersExtensions.AccessibilityName (base_modifiers),
3703                                 base_member.GetSignatureForError ());
3704                 }
3705
3706                 protected void Error_StaticReturnType ()
3707                 {
3708                         Report.Error (722, Location,
3709                                 "`{0}': static types cannot be used as return types",
3710                                 MemberType.GetSignatureForError ());
3711                 }
3712
3713                 /// <summary>
3714                 /// Gets base method and its return type
3715                 /// </summary>
3716                 protected virtual MemberSpec FindBaseMember (out MemberSpec bestCandidate, ref bool overrides)
3717                 {
3718                         return MemberCache.FindBaseMember (this, out bestCandidate, ref overrides);
3719                 }
3720
3721                 //
3722                 // The "short" name of this property / indexer / event.  This is the
3723                 // name without the explicit interface.
3724                 //
3725                 public string ShortName {
3726                         get { return MemberName.Name; }
3727                 }
3728                 
3729                 //
3730                 // Returns full metadata method name
3731                 //
3732                 public string GetFullName (MemberName name)
3733                 {
3734                         return GetFullName (name.Name);
3735                 }
3736
3737                 public string GetFullName (string name)
3738                 {
3739                         if (!IsExplicitImpl)
3740                                 return name;
3741
3742                         //
3743                         // When dealing with explicit members a full interface type
3744                         // name is added to member name to avoid possible name conflicts
3745                         //
3746                         // We use CSharpName which gets us full name with benefit of
3747                         // replacing predefined names which saves some space and name
3748                         // is still unique
3749                         //
3750                         return InterfaceType.GetSignatureForError () + "." + name;
3751                 }
3752
3753                 public override string GetSignatureForDocumentation ()
3754                 {
3755                         if (IsExplicitImpl)
3756                                 return Parent.GetSignatureForDocumentation () + "." + InterfaceType.GetSignatureForDocumentation (true) + "#" + ShortName;
3757
3758                         return Parent.GetSignatureForDocumentation () + "." + ShortName;
3759                 }
3760
3761                 public override bool IsUsed 
3762                 {
3763                         get { return IsExplicitImpl || base.IsUsed; }
3764                 }
3765
3766                 public override void SetConstraints (List<Constraints> constraints_list)
3767                 {
3768                         if (((ModFlags & Modifiers.OVERRIDE) != 0 || IsExplicitImpl)) {
3769                                 Report.Error (460, Location,
3770                                         "`{0}': Cannot specify constraints for overrides and explicit interface implementation methods",
3771                                         GetSignatureForError ());
3772                         }
3773
3774                         base.SetConstraints (constraints_list);
3775                 }
3776         }
3777
3778         public abstract class MemberBase : MemberCore
3779         {
3780                 protected FullNamedExpression type_expr;
3781                 protected TypeSpec member_type;
3782                 public new TypeDefinition Parent;
3783
3784                 protected MemberBase (TypeDefinition parent, FullNamedExpression type, Modifiers mod, Modifiers allowed_mod, Modifiers def_mod, MemberName name, Attributes attrs)
3785                         : base (parent, name, attrs)
3786                 {
3787                         this.Parent = parent;
3788                         this.type_expr = type;
3789
3790                         if (name != MemberName.Null)
3791                                 ModFlags = ModifiersExtensions.Check (allowed_mod, mod, def_mod, Location, Report);
3792                 }
3793
3794                 #region Properties
3795
3796                 public TypeSpec MemberType {
3797                         get {
3798                                 return member_type;
3799                         }
3800                 }
3801
3802                 public FullNamedExpression TypeExpression {
3803                         get {
3804                                 return type_expr;
3805                         }
3806                         set {
3807                                 type_expr = value;
3808                         }
3809                 }
3810
3811                 #endregion
3812
3813                 //
3814                 // Main member define entry
3815                 //
3816                 public override bool Define ()
3817                 {
3818                         DoMemberTypeIndependentChecks ();
3819
3820                         //
3821                         // Returns false only when type resolution failed
3822                         //
3823                         if (!ResolveMemberType ())
3824                                 return false;
3825
3826                         DoMemberTypeDependentChecks ();
3827                         return true;
3828                 }
3829
3830                 //
3831                 // Any type_name independent checks
3832                 //
3833                 protected virtual void DoMemberTypeIndependentChecks ()
3834                 {
3835                         if ((Parent.ModFlags & Modifiers.SEALED) != 0 &&
3836                                 (ModFlags & (Modifiers.VIRTUAL | Modifiers.ABSTRACT)) != 0) {
3837                                 Report.Error (549, Location, "New virtual member `{0}' is declared in a sealed class `{1}'",
3838                                         GetSignatureForError (), Parent.GetSignatureForError ());
3839                         }
3840                 }
3841
3842                 //
3843                 // Any type_name dependent checks
3844                 //
3845                 protected virtual void DoMemberTypeDependentChecks ()
3846                 {
3847                         // verify accessibility
3848                         if (!IsAccessibleAs (MemberType)) {
3849                                 Report.SymbolRelatedToPreviousError (MemberType);
3850                                 if (this is Property)
3851                                         Report.Error (53, Location,
3852                                                 "Inconsistent accessibility: property type `" +
3853                                                 MemberType.GetSignatureForError () + "' is less " +
3854                                                 "accessible than property `" + GetSignatureForError () + "'");
3855                                 else if (this is Indexer)
3856                                         Report.Error (54, Location,
3857                                                 "Inconsistent accessibility: indexer return type `" +
3858                                                 MemberType.GetSignatureForError () + "' is less " +
3859                                                 "accessible than indexer `" + GetSignatureForError () + "'");
3860                                 else if (this is MethodCore) {
3861                                         if (this is Operator)
3862                                                 Report.Error (56, Location,
3863                                                         "Inconsistent accessibility: return type `" +
3864                                                         MemberType.GetSignatureForError () + "' is less " +
3865                                                         "accessible than operator `" + GetSignatureForError () + "'");
3866                                         else
3867                                                 Report.Error (50, Location,
3868                                                         "Inconsistent accessibility: return type `" +
3869                                                         MemberType.GetSignatureForError () + "' is less " +
3870                                                         "accessible than method `" + GetSignatureForError () + "'");
3871                                 } else if (this is Event) {
3872                                         Report.Error (7025, Location,
3873                                                 "Inconsistent accessibility: event type `{0}' is less accessible than event `{1}'",
3874                                                 MemberType.GetSignatureForError (), GetSignatureForError ());
3875                                 } else {
3876                                         Report.Error (52, Location,
3877                                                       "Inconsistent accessibility: field type `" +
3878                                                       MemberType.GetSignatureForError () + "' is less " +
3879                                                       "accessible than field `" + GetSignatureForError () + "'");
3880                                 }
3881                         }
3882                 }
3883
3884                 protected void IsTypePermitted ()
3885                 {
3886                         if (MemberType.IsSpecialRuntimeType) {
3887                                 if (Parent is StateMachine) {
3888                                         Report.Error (4012, Location,
3889                                                 "Parameters or local variables of type `{0}' cannot be declared in async methods or iterators",
3890                                                 MemberType.GetSignatureForError ());
3891                                 } else if (Parent is HoistedStoreyClass) {
3892                                         Report.Error (4013, Location,
3893                                                 "Local variables of type `{0}' cannot be used inside anonymous methods, lambda expressions or query expressions",
3894                                                 MemberType.GetSignatureForError ());
3895                                 } else {
3896                                         Report.Error (610, Location, 
3897                                                 "Field or property cannot be of type `{0}'", MemberType.GetSignatureForError ());
3898                                 }
3899                         }
3900                 }
3901
3902                 protected virtual bool CheckBase ()
3903                 {
3904                         CheckProtectedModifier ();
3905
3906                         return true;
3907                 }
3908
3909                 public override string GetSignatureForDocumentation ()
3910                 {
3911                         return Parent.GetSignatureForDocumentation () + "." + MemberName.Basename;
3912                 }
3913
3914                 public virtual void PrepareEmit ()
3915                 {
3916                         if (member_type != null && type_expr != null)
3917                                 member_type.CheckObsoleteness (this, type_expr.Location);
3918                 }
3919
3920                 protected virtual bool ResolveMemberType ()
3921                 {
3922                         if (member_type != null)
3923                                 throw new InternalErrorException ("Multi-resolve");
3924
3925                         member_type = type_expr.ResolveAsType (this);
3926                         return member_type != null;
3927                 }
3928         }
3929 }
3930