Beispiel #1
0
        public DebugRoot AddRootToTree(EnginesRoot root)
        {
            var debugRoot = new DebugRoot(root);

            DebugRoots.Add(debugRoot);
            return(debugRoot);
        }
Beispiel #2
0
 public DebugGroup(uint key, FasterDictionary <RefWrapper <Type>, ITypeSafeDictionary> val, DebugRoot debugRoot)
 {
     Id      = key;
     GroupDB = val;
     Parent  = debugRoot;
     Process();
 }
Beispiel #3
0
 public DebugGroup(uint key, Dictionary <Type, ITypeSafeDictionary> val, DebugRoot debugRoot)
 {
     Id      = key;
     GroupDB = val;
     Parent  = debugRoot;
     Process();
 }
Beispiel #4
0
 public DebugGroup(ExclusiveGroupStruct key, FasterDictionary <RefWrapperType, ITypeSafeDictionary> val, DebugRoot debugRoot)
 {
     Id      = key;
     GroupDB = val;
     Parent  = debugRoot;
     Process();
 }