예제 #1
0
 internal void AddCreators(BTValueCreators crtrs)
 {
     foreach (BTValueCreator crtr in crtrs)
     {
         this.crtrs[crtr] = true;
     }
 }
예제 #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);
            }
        }
예제 #3
0
파일: BTValues.cs 프로젝트: DragonXYZ/cilpe
        internal BTValueCreators this[AnnotatingVisitor visitor]
        {
            get
            {
                BTValueCreators creators = this.hash[visitor] as BTValueCreators;
                if (creators == null)
                    this.hash[visitor] = creators = new BTValueCreators();

                return creators;
            }
        }
예제 #4
0
파일: BTValues.cs 프로젝트: DragonXYZ/cilpe
 internal void AddCreators(BTValueCreators crtrs)
 {
     foreach (BTValueCreator crtr in crtrs)
         this.crtrs[crtr] = true;
 }