2 instantiations of Utf8SupportMap
Microsoft.CodeAnalysis.Razor.Compiler (2)
CSharp\DefaultUtf8WriteLiteralFeature.cs (2)
67
public static readonly Utf8SupportMap Empty =
new
(
144
: new
Utf8SupportMap
(fileToType.ToImmutable(), typeSupport.ToImmutable());
10 references to Utf8SupportMap
Microsoft.CodeAnalysis.Razor.Compiler (10)
CSharp\DefaultUtf8WriteLiteralFeature.cs (8)
45
public
Utf8SupportMap
SupportMap { get; set; } =
Utf8SupportMap
.Empty;
65
internal sealed class Utf8SupportMap : IEquatable<
Utf8SupportMap
>
67
public static readonly
Utf8SupportMap
Empty = new(
85
/// Builds a <see cref="
Utf8SupportMap
"/> by resolving each file's <c>@inherits</c> to a
88
public static
Utf8SupportMap
Create(ImmutableArray<InheritsInfo> inheritsInfos, Compilation compilation)
253
public bool Equals(
Utf8SupportMap
? other)
269
public override bool Equals(object? obj) => Equals(obj as
Utf8SupportMap
);
SourceGenerators\RazorSourceGenerator.cs (1)
285
return DefaultUtf8WriteLiteralFeature.
Utf8SupportMap
.Create(inheritsInfos, compilation);
SourceGenerators\SourceGeneratorProjectEngine.cs (1)
169
public SourceGeneratorRazorCodeDocument ProcessRemaining(SourceGeneratorRazorCodeDocument sgDocument, DefaultUtf8WriteLiteralFeature.
Utf8SupportMap
utf8SupportMap, CancellationToken cancellationToken)