Exemplo n.º 1
0
 public ImplementationRenderingVisitor(string entryPointName, List <VariableDeclaration> entryPointTypes, CSharpWriter writer) : base(entryPointTypes, writer)
 {
     _entryPointName = entryPointName;
 }
Exemplo n.º 2
0
 public RenderingVisitor(List <VariableDeclaration> entryPointDeclarations, CSharpWriter writer)
 {
     _entryPointDeclarations = entryPointDeclarations;
     Writer = writer;
 }