3 instantiations of SourceWriter
dotnet-razorsyntaxgenerator (3)
SourceWriter.cs (3)
21
public static void WriteMain(TextWriter writer, Tree tree) => new
SourceWriter
(writer, tree).WriteMain();
23
public static void WriteInternal(TextWriter writer, Tree tree) => new
SourceWriter
(writer, tree).WriteInternal();
25
public static void WriteSyntax(TextWriter writer, Tree tree) => new
SourceWriter
(writer, tree).WriteSyntax();
3 references to SourceWriter
dotnet-razorsyntaxgenerator (3)
Program.cs (3)
67
WriteToFile(tree,
SourceWriter
.WriteMain, outputMainFile);
68
WriteToFile(tree,
SourceWriter
.WriteInternal, outputInternalFile);
69
WriteToFile(tree,
SourceWriter
.WriteSyntax, outputSyntaxFile);