예제 #1
0
 public HierarchyMethod(GeneratorContext context, HierarchyObject parent) : base(context, parent)
 {
 }
예제 #2
0
 public HierarchyTypeMember(GeneratorContext context, HierarchyObject parent) : base(context, parent)
 {
 }
예제 #3
0
 public HierarchyTypeParameterGenericConstraint(GeneratorContext context, HierarchyBase parent) : base(context, parent)
 {
 }
예제 #4
0
 public DefaultOutputPathProvider(GeneratorContext context, OutputTreeLayout treeLayout) : base(context)
 {
     TreeLayout = treeLayout ?? throw new ArgumentNullException(nameof(treeLayout));
 }
예제 #5
0
 public Hierarchy(GeneratorContext context) : base(context)
 {
 }
예제 #6
0
 public HierarchyClass(GeneratorContext context, HierarchyElement parent) : base(context, parent)
 {
 }
예제 #7
0
 public HierarchyImplements(GeneratorContext context, HierarchyBase parent) : base(context, parent)
 {
 }
예제 #8
0
 public HierarchyMethodParameter(GeneratorContext context, HierarchyBase parent) : base(context, parent)
 {
 }
예제 #9
0
 protected HierarchyBase(GeneratorContext context)
 {
     Context = context ?? throw new ArgumentNullException(nameof(context));
 }