public GamaNamespace(string name, GamaGlobalContext ctx) { Name = name; Structs = new List <GamaStructRef>(); Functions = new List <GamaFunctionList>(); Types = new List <GamaTypeRef>(); Namespaces = new List <GamaNamespace>(); Context = ctx; }
public GamaNamespace(string name, GamaNamespace parent, GamaGlobalContext ctx) : this(name, ctx) { Parent = parent; }