Example #1
0
 internal void AddCreators(BTValueCreators crtrs)
 {
     foreach (BTValueCreator crtr in crtrs)
     {
         this.crtrs[crtr] = true;
     }
 }
Example #2
0
        internal BTValueCreators this [AnnotatingVisitor visitor]
        {
            get
            {
                BTValueCreators creators = this.hash[visitor] as BTValueCreators;
                if (creators == null)
                {
                    this.hash[visitor] = creators = new BTValueCreators();
                }

                return(creators);
            }
        }
Example #3
0
        internal BTValueCreators this[AnnotatingVisitor visitor]
        {
            get
            {
                BTValueCreators creators = this.hash[visitor] as BTValueCreators;
                if (creators == null)
                    this.hash[visitor] = creators = new BTValueCreators();

                return creators;
            }
        }
Example #4
0
 internal void AddCreators(BTValueCreators crtrs)
 {
     foreach (BTValueCreator crtr in crtrs)
         this.crtrs[crtr] = true;
 }