예제 #1
0
 private void setNext(ReferenceBTValue val)
 {
     this.next = val;
     val.crtrs.AddCreators(this.crtrs);
     foreach (Type type in this.types)
     {
         val.addType(type);
     }
 }
예제 #2
0
        internal BTValue ToStack(Type type)
        {
            ReferenceBTValue val = this.findLeaf();

            if (PrimitiveBTValue.CheckType(type))
            {
                val.addType(PrimitiveBTValue.PrimitiveType()); //!!!!!!!!!!!!
                return(new PrimitiveBTValue(val.btType));
            }
            else
            {
                return(val);
            }
        }
예제 #3
0
파일: BTValues.cs 프로젝트: DragonXYZ/cilpe
 private void setNext(ReferenceBTValue val)
 {
     this.next = val;
     val.crtrs.AddCreators(this.crtrs);
     foreach (Type type in this.types)
         val.addType(type);
 }