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