Пример #1
0
        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;
        }
Пример #2
0
 public GamaNamespace(string name, GamaNamespace parent, GamaGlobalContext ctx) : this(name, ctx)
 {
     Parent = parent;
 }