6 instantiations of CSharpCodeWritingScope
Microsoft.CodeAnalysis.Razor.Compiler (6)
Language\CodeGeneration\CodeWriterExtensions.cs (6)
602return new CSharpCodeWritingScope(writer); 662return new CSharpCodeWritingScope(writer, writeBraces: false); 678return new CSharpCodeWritingScope(writer); 769return new CSharpCodeWritingScope(writer); 821return new CSharpCodeWritingScope(writer); 841return new CSharpCodeWritingScope(writer);
13 references to CSharpCodeWritingScope
Microsoft.CodeAnalysis.Razor.Compiler (13)
Language\CodeGeneration\CodeWriterExtensions.cs (11)
600public static CSharpCodeWritingScope BuildScope(this CodeWriter writer) 605public static CSharpCodeWritingScope BuildLambda(this CodeWriter writer) 608public static CSharpCodeWritingScope BuildLambda(this CodeWriter writer, string parameterName) 611public static CSharpCodeWritingScope BuildLambda<T>(this CodeWriter writer, T parameterName) 615public static CSharpCodeWritingScope BuildAsyncLambda(this CodeWriter writer) 618public static CSharpCodeWritingScope BuildAsyncLambda(this CodeWriter writer, string parameterName) 621public static CSharpCodeWritingScope BuildAsyncLambda<T>(this CodeWriter writer, T parameterName) 658public static CSharpCodeWritingScope BuildNamespace(this CodeWriter writer, string? name, SourceSpan? span, CodeRenderingContext context) 682public static CSharpCodeWritingScope BuildClassDeclaration( 807public static CSharpCodeWritingScope BuildConstructorDeclaration( 824public static CSharpCodeWritingScope BuildMethodDeclaration(
Language\Components\ComponentNodeWriter.cs (1)
1094CodeWriterExtensions.CSharpCodeWritingScope? typeInferenceCaptureScope = null;
Language\Components\ScopeStack.Entry.cs (1)
15private readonly CSharpCodeWritingScope _scope;