コード例 #1
0
 public ImplementationRenderingVisitor(string entryPointName, List <VariableDeclaration> entryPointTypes, CSharpWriter writer) : base(entryPointTypes, writer)
 {
     _entryPointName = entryPointName;
 }
コード例 #2
0
 public RenderingVisitor(List <VariableDeclaration> entryPointDeclarations, CSharpWriter writer)
 {
     _entryPointDeclarations = entryPointDeclarations;
     Writer = writer;
 }