Don't define the generic interfaces on mcs.
[mono.git] / mcs / mcs / namespace.cs
1 //
2 // namespace.cs: Tracks namespaces
3 //
4 // Author:
5 //   Miguel de Icaza (miguel@ximian.com)
6 //   Marek Safar (marek.safar@seznam.cz)
7 //
8 // (C) 2001 Ximian, Inc.
9 //
10 using System;
11 using System.Collections;
12 using System.Collections.Specialized;
13 using System.Reflection;
14
15 namespace Mono.CSharp {
16
17         public class RootNamespace : Namespace {
18                 static MethodInfo get_namespaces_method;
19
20                 string alias_name;
21                 Assembly referenced_assembly;
22
23                 Hashtable all_namespaces;
24
25                 static Hashtable root_namespaces;
26                 public static GlobalRootNamespace Global;
27                 
28                 static RootNamespace ()
29                 {
30                         get_namespaces_method = typeof (Assembly).GetMethod ("GetNamespaces", BindingFlags.Instance | BindingFlags.NonPublic);
31
32                         Reset ();
33                 }
34
35                 public static void Reset ()
36                 {
37                         root_namespaces = new Hashtable ();
38                         Global = new GlobalRootNamespace ();
39                         root_namespaces ["global"] = Global;
40                 }
41
42                 protected RootNamespace (string alias_name, Assembly assembly)
43                         : base (null, String.Empty)
44                 {
45                         this.alias_name = alias_name;
46                         referenced_assembly = assembly;
47
48                         all_namespaces = new Hashtable ();
49                         all_namespaces.Add ("", this);
50
51                         if (referenced_assembly != null)
52                                 ComputeNamespaces (this.referenced_assembly);
53                 }
54
55                 public static void DefineRootNamespace (string name, Assembly assembly)
56                 {
57                         if (name == "global") {
58                                 // FIXME: Add proper error number
59                                 Report.Error (-42, "Cannot define an external alias named `global'");
60                                 return;
61                         }
62                         RootNamespace retval = GetRootNamespace (name);
63                         if (retval == null || retval.referenced_assembly != assembly)
64                                 root_namespaces [name] = new RootNamespace (name, assembly);
65                 }
66
67                 public static RootNamespace GetRootNamespace (string name)
68                 {
69                         return (RootNamespace) root_namespaces [name];
70                 }
71
72                 public virtual Type LookupTypeReflection (string name, Location loc)
73                 {
74                         return GetTypeInAssembly (referenced_assembly, name);
75                 }
76
77                 public void RegisterNamespace (Namespace child)
78                 {
79                         if (child != this)
80                                 all_namespaces.Add (child.Name, child);
81                 }
82
83                 public bool IsNamespace (string name)
84                 {
85                         return all_namespaces.Contains (name);
86                 }
87
88                 protected void EnsureNamespace (string dotted_name)
89                 {
90                         if (dotted_name != null && dotted_name.Length != 0 && ! IsNamespace (dotted_name))
91                                 GetNamespace (dotted_name, true);
92                 }
93
94                 protected void ComputeNamespaces (Assembly assembly)
95                 {
96                         if (get_namespaces_method != null) {
97                                 string [] namespaces = (string []) get_namespaces_method.Invoke (assembly, null);
98                                 foreach (string ns in namespaces)
99                                         EnsureNamespace (ns);
100                                 return;
101                         }
102
103                         foreach (Type t in assembly.GetExportedTypes ())
104                                 EnsureNamespace (t.Namespace);
105                 }
106                 
107                 protected static Type GetTypeInAssembly (Assembly assembly, string name)
108                 {
109                         Type t = assembly.GetType (name);
110                         if (t == null)
111                                 return null;
112
113                         if (t.IsPointer)
114                                 throw new InternalErrorException ("Use GetPointerType() to get a pointer");
115
116                         TypeAttributes ta = t.Attributes & TypeAttributes.VisibilityMask;
117                         if (ta == TypeAttributes.NestedPrivate)
118                                 return null;
119
120                         if ((ta == TypeAttributes.NotPublic ||
121                              ta == TypeAttributes.NestedAssembly ||
122                              ta == TypeAttributes.NestedFamANDAssem) &&
123                             !TypeManager.IsFriendAssembly (t.Assembly))
124                                 return null;
125
126                         return t;
127                 }
128
129                 public override string ToString ()
130                 {
131                         return String.Format ("RootNamespace ({0}::)", alias_name);
132                 }
133
134                 public override string GetSignatureForError ()
135                 {
136                         return alias_name + "::";
137                 }
138         }
139
140         public class GlobalRootNamespace : RootNamespace {
141                 Assembly [] assemblies;
142                 Module [] modules;
143
144                 public GlobalRootNamespace ()
145                         : base ("global", null)
146                 {
147                         assemblies = new Assembly [0];
148                 }
149
150                 public Assembly [] Assemblies {
151                         get { return assemblies; }
152                 }
153
154                 public Module [] Modules {
155                         get { return modules; }
156                 }
157
158                 public void AddAssemblyReference (Assembly a)
159                 {
160                         foreach (Assembly assembly in assemblies) {
161                                 if (a == assembly)
162                                         return;
163                         }
164
165                         int top = assemblies.Length;
166                         Assembly [] n = new Assembly [top + 1];
167                         assemblies.CopyTo (n, 0);
168                         n [top] = a;
169                         assemblies = n;
170
171                         ComputeNamespaces (a);
172                 }
173
174                 public void AddModuleReference (Module m)
175                 {
176                         int top = modules != null ? modules.Length : 0;
177                         Module [] n = new Module [top + 1];
178                         if (modules != null)
179                                 modules.CopyTo (n, 0);
180                         n [top] = m;
181                         modules = n;
182
183                         if (m == CodeGen.Module.Builder)
184                                 return;
185
186                         foreach (Type t in m.GetTypes ())
187                                 EnsureNamespace (t.Namespace);
188                 }
189
190                 public override void Error_NamespaceDoesNotExist(Location loc, string name)
191                 {
192                         Report.Error (400, loc, "The type or namespace name `{0}' could not be found in the global namespace (are you missing an assembly reference?)",
193                                 name);
194                 }
195
196                 public override Type LookupTypeReflection (string name, Location loc)
197                 {
198                         Type found_type = null;
199                 
200                         foreach (Assembly a in assemblies) {
201                                 Type t = GetTypeInAssembly (a, name);
202                                 if (t == null)
203                                         continue;
204                                         
205                                 if (found_type == null) {
206                                         found_type = t;
207                                         continue;
208                                 }
209
210                                 Report.SymbolRelatedToPreviousError (found_type);
211                                 Report.SymbolRelatedToPreviousError (t);
212                                 Report.Error (433, loc, "The imported type `{0}' is defined multiple times", name);
213                                         
214                                 return found_type;
215                         }
216
217                         if (modules != null) {
218                                 foreach (Module module in modules) {
219                                         Type t = module.GetType (name);
220                                         if (t == null)
221                                                 continue;
222
223                                         if (found_type == null) {
224                                                 found_type = t;
225                                                 continue;
226                                         }
227                                         
228                                         Report.SymbolRelatedToPreviousError (t);
229                                         Report.SymbolRelatedToPreviousError (found_type);
230                                         Report.Warning (436, 2, loc, "Ignoring imported type `{0}' since the current assembly already has a declaration with the same name",
231                                                 TypeManager.CSharpName (t));
232                                         return t;
233                                 }
234                         }
235
236                         return found_type;
237                 }
238         }
239
240         /// <summary>
241         ///   Keeps track of the namespaces defined in the C# code.
242         ///
243         ///   This is an Expression to allow it to be referenced in the
244         ///   compiler parse/intermediate tree during name resolution.
245         /// </summary>
246         public class Namespace : FullNamedExpression {
247                 
248                 Namespace parent;
249                 string fullname;
250                 Hashtable namespaces;
251                 IDictionary declspaces;
252                 Hashtable cached_types;
253                 RootNamespace root;
254
255                 public readonly MemberName MemberName;
256
257                 /// <summary>
258                 ///   Constructor Takes the current namespace and the
259                 ///   name.  This is bootstrapped with parent == null
260                 ///   and name = ""
261                 /// </summary>
262                 public Namespace (Namespace parent, string name)
263                 {
264                         // Expression members.
265                         this.eclass = ExprClass.Namespace;
266                         this.Type = null;
267                         this.loc = Location.Null;
268
269                         this.parent = parent;
270
271                         if (parent != null)
272                                 this.root = parent.root;
273                         else
274                                 this.root = this as RootNamespace;
275
276                         if (this.root == null)
277                                 throw new InternalErrorException ("Root namespaces must be created using RootNamespace");
278                         
279                         string pname = parent != null ? parent.Name : "";
280                                 
281                         if (pname == "")
282                                 fullname = name;
283                         else
284                                 fullname = parent.Name + "." + name;
285
286                         if (fullname == null)
287                                 throw new InternalErrorException ("Namespace has a null fullname");
288
289                         if (parent != null && parent.MemberName != MemberName.Null)
290                                 MemberName = new MemberName (parent.MemberName, name);
291                         else if (name.Length == 0)
292                                 MemberName = MemberName.Null;
293                         else
294                                 MemberName = new MemberName (name);
295
296                         namespaces = new Hashtable ();
297                         cached_types = new Hashtable ();
298
299                         root.RegisterNamespace (this);
300                 }
301
302                 public override Expression DoResolve (EmitContext ec)
303                 {
304                         return this;
305                 }
306
307                 public virtual void Error_NamespaceDoesNotExist (Location loc, string name)
308                 {
309                         Report.Error (234, loc, "The type or namespace name `{0}' does not exist in the namespace `{1}'. Are you missing an assembly reference?",
310                                 name, FullName);
311                 }
312
313                 public override void Emit (EmitContext ec)
314                 {
315                         throw new InternalErrorException ("Expression tree referenced namespace " + fullname + " during Emit ()");
316                 }
317
318                 public override string GetSignatureForError ()
319                 {
320                         return Name;
321                 }
322                 
323                 public Namespace GetNamespace (string name, bool create)
324                 {
325                         int pos = name.IndexOf ('.');
326
327                         Namespace ns;
328                         string first;
329                         if (pos >= 0)
330                                 first = name.Substring (0, pos);
331                         else
332                                 first = name;
333
334                         ns = (Namespace) namespaces [first];
335                         if (ns == null) {
336                                 if (!create)
337                                         return null;
338
339                                 ns = new Namespace (this, first);
340                                 namespaces.Add (first, ns);
341                         }
342
343                         if (pos >= 0)
344                                 ns = ns.GetNamespace (name.Substring (pos + 1), create);
345
346                         return ns;
347                 }
348
349                 TypeExpr LookupType (string name, Location loc)
350                 {
351                         if (cached_types.Contains (name))
352                                 return cached_types [name] as TypeExpr;
353
354                         Type t = null;
355                         if (declspaces != null) {
356                                 DeclSpace tdecl = declspaces [name] as DeclSpace;
357                                 if (tdecl != null) {
358                                         //
359                                         // Note that this is not:
360                                         //
361                                         //   t = tdecl.DefineType ()
362                                         //
363                                         // This is to make it somewhat more useful when a DefineType
364                                         // fails due to problems in nested types (more useful in the sense
365                                         // of fewer misleading error messages)
366                                         //
367                                         tdecl.DefineType ();
368                                         t = tdecl.TypeBuilder;
369                                 }
370                         }
371                         string lookup = t != null ? t.FullName : (fullname.Length == 0 ? name : fullname + "." + name);
372                         Type rt = root.LookupTypeReflection (lookup, loc);
373                         if (t == null)
374                                 t = rt;
375
376                         TypeExpr te = t == null ? null : new TypeExpression (t, Location.Null);
377                         cached_types [name] = te;
378                         return te;
379                 }
380
381                 public FullNamedExpression Lookup (DeclSpace ds, string name, Location loc)
382                 {
383                         if (namespaces.Contains (name))
384                                 return (Namespace) namespaces [name];
385
386                         TypeExpr te = LookupType (name, loc);
387                         if (te == null || !ds.CheckAccessLevel (te.Type))
388                                 return null;
389
390                         return te;
391                 }
392
393                 public void AddDeclSpace (string name, DeclSpace ds)
394                 {
395                         if (declspaces == null)
396                                 declspaces = new HybridDictionary ();
397                         declspaces.Add (name, ds);
398                 }
399
400                 /// <summary>
401                 ///   The qualified name of the current namespace
402                 /// </summary>
403                 public string Name {
404                         get { return fullname; }
405                 }
406
407                 public override string FullName {
408                         get { return fullname; }
409                 }
410
411                 /// <summary>
412                 ///   The parent of this namespace, used by the parser to "Pop"
413                 ///   the current namespace declaration
414                 /// </summary>
415                 public Namespace Parent {
416                         get { return parent; }
417                 }
418
419                 public override string ToString ()
420                 {
421                         return String.Format ("Namespace ({0})", Name);
422                 }
423         }
424
425         public class NamespaceEntry {
426                 Namespace ns;
427                 NamespaceEntry parent, implicit_parent;
428                 SourceFile file;
429                 int symfile_id;
430                 Hashtable aliases;
431                 ArrayList using_clauses;
432                 public bool DeclarationFound = false;
433                 bool UsingFound;
434
435                 public readonly DeclSpace SlaveDeclSpace;
436
437                 ListDictionary extern_aliases;
438
439                 static ArrayList entries = new ArrayList ();
440
441                 public static void Reset ()
442                 {
443                         entries = new ArrayList ();
444                 }
445
446                 //
447                 // This class holds the location where a using definition is
448                 // done, and whether it has been used by the program or not.
449                 //
450                 // We use this to flag using clauses for namespaces that do not
451                 // exist.
452                 //
453                 public class UsingEntry : IResolveContext {
454                         public readonly MemberName Name;
455                         readonly Expression Expr;
456                         readonly NamespaceEntry NamespaceEntry;
457                         readonly Location Location;
458                         
459                         public UsingEntry (NamespaceEntry entry, MemberName name, Location loc)
460                         {
461                                 Name = name;
462                                 Expr = name.GetTypeExpression ();
463                                 NamespaceEntry = entry;
464                                 Location = loc;
465                         }
466
467                         internal Namespace resolved;
468
469                         public Namespace Resolve ()
470                         {
471                                 if (resolved != null)
472                                         return resolved;
473
474                                 FullNamedExpression fne = Expr.ResolveAsTypeStep (this, false);
475                                 if (fne == null) {
476                                         Error_NamespaceNotFound (Location, Name.ToString ());
477                                         return null;
478                                 }
479
480                                 resolved = fne as Namespace;
481                                 if (resolved == null) {
482                                         Report.Error (138, Location,
483                                                 "`{0} is a type not a namespace. A using namespace directive can only be applied to namespaces", Name.ToString ());
484                                 }
485                                 return resolved;
486                         }
487
488                         DeclSpace IResolveContext.DeclContainer {
489                                 get { return NamespaceEntry.SlaveDeclSpace; }
490                         }
491
492                         DeclSpace IResolveContext.GenericDeclContainer {
493                                 get { return NamespaceEntry.SlaveDeclSpace; }
494                         }
495
496                         bool IResolveContext.IsInObsoleteScope {
497                                 get { return false; }
498                         }
499                         bool IResolveContext.IsInUnsafeScope {
500                                 get { return false; }
501                         }
502                 }
503
504                 public abstract class AliasEntry {
505                         public readonly string Name;
506                         public readonly NamespaceEntry NamespaceEntry;
507                         public readonly Location Location;
508                         
509                         protected AliasEntry (NamespaceEntry entry, string name, Location loc)
510                         {
511                                 Name = name;
512                                 NamespaceEntry = entry;
513                                 Location = loc;
514                         }
515                         
516                         protected FullNamedExpression resolved;
517                         bool error;
518
519                         public FullNamedExpression Resolve ()
520                         {
521                                 if (resolved != null || error)
522                                         return resolved;
523                                 resolved = DoResolve ();
524                                 if (resolved == null)
525                                         error = true;
526                                 return resolved;
527                         }
528
529                         protected abstract FullNamedExpression DoResolve ();
530                 }
531
532                 public class LocalAliasEntry : AliasEntry, IResolveContext {
533                         public readonly Expression Alias;
534                         
535                         public LocalAliasEntry (NamespaceEntry entry, string name, MemberName alias, Location loc) :
536                                 base (entry, name, loc)
537                         {
538                                 Alias = alias.GetTypeExpression ();
539                         }
540
541                         protected override FullNamedExpression DoResolve ()
542                         {
543                                 resolved = Alias.ResolveAsTypeStep (this, false);
544                                 if (resolved == null)
545                                         return null;
546
547                                 if (resolved.Type != null) {
548                                         TypeAttributes attr = resolved.Type.Attributes & TypeAttributes.VisibilityMask;
549                                         if (attr == TypeAttributes.NestedPrivate || attr == TypeAttributes.NestedFamily ||
550                                                 ((attr == TypeAttributes.NestedFamORAssem || attr == TypeAttributes.NestedAssembly) && 
551                                                 TypeManager.LookupDeclSpace (resolved.Type) == null)) {
552                                                 Expression.ErrorIsInaccesible (Alias.Location, Alias.ToString ());
553                                                 return null;
554                                         }
555                                 }
556
557                                 return resolved;
558                         }
559
560                         DeclSpace IResolveContext.DeclContainer {
561                                 get { return NamespaceEntry.SlaveDeclSpace; }
562                         }
563
564                         DeclSpace IResolveContext.GenericDeclContainer {
565                                 get { return NamespaceEntry.SlaveDeclSpace; }
566                         }
567
568                         bool IResolveContext.IsInObsoleteScope {
569                                 get { return false; }
570                         }
571                         bool IResolveContext.IsInUnsafeScope {
572                                 get { return false; }
573                         }
574                 }
575
576                 public class ExternAliasEntry : AliasEntry {
577                         public ExternAliasEntry (NamespaceEntry entry, string name, Location loc) :
578                                 base (entry, name, loc)
579                         {
580                         }
581
582                         protected override FullNamedExpression DoResolve ()
583                         {
584                                 resolved = RootNamespace.GetRootNamespace (Name);
585                                 if (resolved == null)
586                                         Report.Error (430, Location, "The extern alias '" + Name +
587                                                                         "' was not specified in a /reference option");
588
589                                 return resolved;
590                         }
591                 }
592
593                 public NamespaceEntry (NamespaceEntry parent, SourceFile file, string name)
594                 {
595                         this.parent = parent;
596                         this.file = file;
597                         entries.Add (this);
598                         this.ID = entries.Count;
599
600                         if (parent != null)
601                                 ns = parent.NS.GetNamespace (name, true);
602                         else if (name != null)
603                                 ns = RootNamespace.Global.GetNamespace (name, true);
604                         else
605                                 ns = RootNamespace.Global;
606                         SlaveDeclSpace = new RootDeclSpace (this);
607                 }
608
609                 private NamespaceEntry (NamespaceEntry parent, SourceFile file, Namespace ns, bool slave)
610                 {
611                         this.parent = parent;
612                         this.file = file;
613                         // no need to add self to 'entries', since we don't have any aliases or using entries.
614                         this.ID = -1;
615                         this.IsImplicit = true;
616                         this.ns = ns;
617                         this.SlaveDeclSpace = slave ? new RootDeclSpace (this) : null;
618                 }
619
620                 //
621                 // According to section 16.3.1 (using-alias-directive), the namespace-or-type-name is
622                 // resolved as if the immediately containing namespace body has no using-directives.
623                 //
624                 // Section 16.3.2 says that the same rule is applied when resolving the namespace-name
625                 // in the using-namespace-directive.
626                 //
627                 // To implement these rules, the expressions in the using directives are resolved using 
628                 // the "doppelganger" (ghostly bodiless duplicate).
629                 //
630                 NamespaceEntry doppelganger;
631                 NamespaceEntry Doppelganger {
632                         get {
633                                 if (!IsImplicit && doppelganger == null)
634                                         doppelganger = new NamespaceEntry (ImplicitParent, file, ns, true);
635                                 return doppelganger;
636                         }
637                 }
638
639                 public readonly int ID;
640                 public readonly bool IsImplicit;
641
642                 public Namespace NS {
643                         get { return ns; }
644                 }
645
646                 public NamespaceEntry Parent {
647                         get { return parent; }
648                 }
649
650                 public NamespaceEntry ImplicitParent {
651                         get {
652                                 if (parent == null)
653                                         return null;
654                                 if (implicit_parent == null) {
655                                         implicit_parent = (parent.NS == ns.Parent)
656                                                 ? parent
657                                                 : new NamespaceEntry (parent, file, ns.Parent, false);
658                                 }
659                                 return implicit_parent;
660                         }
661                 }
662
663                 /// <summary>
664                 ///   Records a new namespace for resolving name references
665                 /// </summary>
666                 public void Using (MemberName name, Location loc)
667                 {
668                         if (DeclarationFound){
669                                 Report.Error (1529, loc, "A using clause must precede all other namespace elements except extern alias declarations");
670                                 return;
671                         }
672
673                         UsingFound = true;
674
675                         if (name.Equals (ns.MemberName))
676                                 return;
677                         
678                         if (using_clauses == null)
679                                 using_clauses = new ArrayList ();
680
681                         foreach (UsingEntry old_entry in using_clauses) {
682                                 if (name.Equals (old_entry.Name)) {
683                                         Report.Warning (105, 3, loc, "The using directive for `{0}' appeared previously in this namespace", name.GetName ());
684                                         return;
685                                 }
686                         }
687
688                         UsingEntry ue = new UsingEntry (Doppelganger, name, loc);
689                         using_clauses.Add (ue);
690                 }
691
692                 public void UsingAlias (string name, MemberName alias, Location loc)
693                 {
694                         if (DeclarationFound){
695                                 Report.Error (1529, loc, "A using clause must precede all other namespace elements except extern alias declarations");
696                                 return;
697                         }
698
699                         UsingFound = true;
700
701                         if (aliases == null)
702                                 aliases = new Hashtable ();
703
704                         if (aliases.Contains (name)) {
705                                 AliasEntry ae = (AliasEntry) aliases [name];
706                                 Report.SymbolRelatedToPreviousError (ae.Location, ae.Name);
707                                 Report.Error (1537, loc, "The using alias `{0}' appeared previously in this namespace", name);
708                                 return;
709                         }
710
711                         if (RootContext.Version == LanguageVersion.Default &&
712                             name == "global" && RootContext.WarningLevel >= 2)
713                                 Report.Warning (440, 2, loc, "An alias named `global' will not be used when resolving 'global::';" +
714                                         " the global namespace will be used instead");
715
716                         // FIXME: get correct error number.  See if the above check can be merged
717                         if (extern_aliases != null && extern_aliases.Contains (name)) {
718                                 AliasEntry ae = (AliasEntry) extern_aliases [name];
719                                 Report.SymbolRelatedToPreviousError (ae.Location, ae.Name);
720                                 Report.Error (1537, loc, "The using alias `{0}' appeared previously in this namespace", name);
721                                 return;
722                         }
723
724                         aliases [name] = new LocalAliasEntry (Doppelganger, name, alias, loc);
725                 }
726
727                 public void UsingExternalAlias (string name, Location loc)
728                 {
729                         if (UsingFound || DeclarationFound) {
730                                 Report.Error (439, loc, "An extern alias declaration must precede all other elements");
731                                 return;
732                         }
733                         
734                         // Share the extern_aliases field with the Doppelganger
735                         if (extern_aliases == null) {
736                                 extern_aliases = new ListDictionary ();
737                                 Doppelganger.extern_aliases = extern_aliases;
738                         }
739
740                         if (extern_aliases.Contains (name)) {
741                                 AliasEntry ae = (AliasEntry) extern_aliases [name];
742                                 Report.SymbolRelatedToPreviousError (ae.Location, ae.Name);
743                                 Report.Error (1537, loc, "The using alias `{0}' appeared previously in this namespace", name);
744                                 return;
745                         }
746
747                         if (name == "global") {
748                                 Report.Error (1681, loc, "You cannot redefine the global extern alias");
749                                 return;
750                         }
751
752                         // Register the alias in aliases and extern_aliases, since we need both of them
753                         // to keep things simple (different resolution scenarios)
754                         ExternAliasEntry alias = new ExternAliasEntry (Doppelganger, name, loc);
755                         extern_aliases [name] = alias;
756                 }
757
758                 public FullNamedExpression LookupNamespaceOrType (DeclSpace ds, string name, Location loc, bool ignore_cs0104)
759                 {
760                         // Precondition: Only simple names (no dots) will be looked up with this function.
761                         FullNamedExpression resolved = null;
762                         for (NamespaceEntry curr_ns = this; curr_ns != null; curr_ns = curr_ns.ImplicitParent) {
763                                 if ((resolved = curr_ns.Lookup (ds, name, loc, ignore_cs0104)) != null)
764                                         break;
765                         }
766                         return resolved;
767                 }
768
769                 static void Error_AmbiguousTypeReference (Location loc, string name, FullNamedExpression t1, FullNamedExpression t2)
770                 {
771                         Report.Error (104, loc, "`{0}' is an ambiguous reference between `{1}' and `{2}'",
772                                 name, t1.FullName, t2.FullName);
773                 }
774
775                 // Looks-up a alias named @name in this and surrounding namespace declarations
776                 public FullNamedExpression LookupAlias (string name)
777                 {
778                         AliasEntry entry = null;
779                         for (NamespaceEntry n = this; n != null; n = n.ImplicitParent) {
780                                 if (n.extern_aliases != null && (entry = n.extern_aliases [name] as AliasEntry) != null)
781                                         break;
782                                 if (n.aliases != null && (entry = n.aliases [name] as AliasEntry) != null)
783                                         break;
784                         }
785                         return entry == null ? null : entry.Resolve ();
786                 }
787
788                 private FullNamedExpression Lookup (DeclSpace ds, string name, Location loc, bool ignore_cs0104)
789                 {
790                         //
791                         // Check whether it's in the namespace.
792                         //
793                         FullNamedExpression fne = NS.Lookup (ds, name, loc);
794                         if (fne != null)
795                                 return fne;
796
797                         if (extern_aliases != null) {
798                                 AliasEntry entry = extern_aliases [name] as AliasEntry;
799                                 if (entry != null)
800                                         return entry.Resolve ();
801                         }
802                         
803                         if (IsImplicit)
804                                 return null;
805                         
806                         //
807                         // Check aliases. 
808                         //
809                         if (aliases != null) {
810                                 AliasEntry entry = aliases [name] as AliasEntry;
811                                 if (entry != null)
812                                         return entry.Resolve ();
813                         }
814
815                         //
816                         // Check using entries.
817                         //
818                         FullNamedExpression match = null;
819                         foreach (Namespace using_ns in GetUsingTable ()) {
820                                 match = using_ns.Lookup (ds, name, loc);
821                                 if (match == null || !(match is TypeExpr))
822                                         continue;
823                                 if (fne != null) {
824                                         if (!ignore_cs0104)
825                                                 Error_AmbiguousTypeReference (loc, name, fne, match);
826                                         return null;
827                                 }
828                                 fne = match;
829                         }
830
831                         return fne;
832                 }
833
834                 // Our cached computation.
835                 readonly Namespace [] empty_namespaces = new Namespace [0];
836                 Namespace [] namespace_using_table;
837                 Namespace [] GetUsingTable ()
838                 {
839                         if (namespace_using_table != null)
840                                 return namespace_using_table;
841
842                         if (using_clauses == null) {
843                                 namespace_using_table = empty_namespaces;
844                                 return namespace_using_table;
845                         }
846
847                         ArrayList list = new ArrayList (using_clauses.Count);
848
849                         foreach (UsingEntry ue in using_clauses) {
850                                 Namespace using_ns = ue.Resolve ();
851                                 if (using_ns == null)
852                                         continue;
853
854                                 list.Add (using_ns);
855                         }
856
857                         namespace_using_table = new Namespace [list.Count];
858                         list.CopyTo (namespace_using_table, 0);
859                         return namespace_using_table;
860                 }
861
862                 readonly string [] empty_using_list = new string [0];
863
864                 public int SymbolFileID {
865                         get {
866                                 if (symfile_id == 0 && file.SourceFileEntry != null) {
867                                         int parent_id = parent == null ? 0 : parent.SymbolFileID;
868
869                                         string [] using_list = empty_using_list;
870                                         if (using_clauses != null) {
871                                                 using_list = new string [using_clauses.Count];
872                                                 for (int i = 0; i < using_clauses.Count; i++)
873                                                         using_list [i] = ((UsingEntry) using_clauses [i]).Name.ToString ();
874                                         }
875
876                                         symfile_id = CodeGen.SymbolWriter.DefineNamespace (ns.Name, file.SourceFileEntry, using_list, parent_id);
877                                 }
878                                 return symfile_id;
879                         }
880                 }
881
882                 static void MsgtryRef (string s)
883                 {
884                         Console.WriteLine ("    Try using -r:" + s);
885                 }
886
887                 static void MsgtryPkg (string s)
888                 {
889                         Console.WriteLine ("    Try using -pkg:" + s);
890                 }
891
892                 public static void Error_NamespaceNotFound (Location loc, string name)
893                 {
894                         Report.Error (246, loc, "The type or namespace name `{0}' could not be found. Are you missing a using directive or an assembly reference?",
895                                 name);
896
897                         switch (name) {
898                         case "Gtk": case "GtkSharp":
899                                 MsgtryPkg ("gtk-sharp");
900                                 break;
901
902                         case "Gdk": case "GdkSharp":
903                                 MsgtryPkg ("gdk-sharp");
904                                 break;
905
906                         case "Glade": case "GladeSharp":
907                                 MsgtryPkg ("glade-sharp");
908                                 break;
909
910                         case "System.Drawing":
911                         case "System.Web.Services":
912                         case "System.Web":
913                         case "System.Data":
914                         case "System.Windows.Forms":
915                                 MsgtryRef (name);
916                                 break;
917                         }
918                 }
919
920                 /// <summary>
921                 ///   Used to validate that all the using clauses are correct
922                 ///   after we are finished parsing all the files.  
923                 /// </summary>
924                 void VerifyUsing ()
925                 {
926                         if (extern_aliases != null) {
927                                 foreach (DictionaryEntry de in extern_aliases)
928                                         ((AliasEntry) de.Value).Resolve ();
929                         }               
930
931                         if (using_clauses != null) {
932                                 foreach (UsingEntry ue in using_clauses)
933                                         ue.Resolve ();
934                         }
935
936                         if (aliases != null) {
937                                 foreach (DictionaryEntry de in aliases)
938                                         ((AliasEntry) de.Value).Resolve ();
939                         }
940                 }
941
942                 /// <summary>
943                 ///   Used to validate that all the using clauses are correct
944                 ///   after we are finished parsing all the files.  
945                 /// </summary>
946                 static public void VerifyAllUsing ()
947                 {
948                         foreach (NamespaceEntry entry in entries)
949                                 entry.VerifyUsing ();
950                 }
951
952                 public string GetSignatureForError ()
953                 {
954                         return ns.GetSignatureForError ();
955                 }
956
957                 public override string ToString ()
958                 {
959                         return ns.ToString ();
960                 }
961         }
962 }