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