Example #1
0
 public HeritachyType(HeritachyType parent, string name, IScop iscop)
 {
     this.name = name;
     Scop      = iscop;
     if (parent != null)
     {
         parent.Children = this;
     }
 }
Example #2
0
 public MethodCallHiretachy(HeritachyType hiHeritachyType) : base(hiHeritachyType)
 {
 }
Example #3
0
 public MethodCallHiretachy(HeritachyType heritachyType, MethodInfo main = null) : base(heritachyType, main)
 {
 }