2 instantiations of Utf8SupportMap
Microsoft.CodeAnalysis.Razor.Compiler (2)
CSharp\Utf8SupportMap.cs (2)
36public static readonly Utf8SupportMap Empty = new( 115: new Utf8SupportMap(fileToType.ToImmutable(), typeSupport.ToImmutable());
12 references to Utf8SupportMap
Microsoft.CodeAnalysis.Razor.Compiler (12)
CSharp\Utf8SupportMap.cs (5)
27internal sealed class Utf8SupportMap : IEquatable<Utf8SupportMap> 36public static readonly Utf8SupportMap Empty = new( 57public static Utf8SupportMap Create(ImmutableArray<InheritsInfo> inheritsInfos, Compilation compilation) 228public bool Equals(Utf8SupportMap? other) 261public override bool Equals(object? obj) => Equals(obj as Utf8SupportMap);
Language\RazorCodeDocument.cs (4)
42private readonly Utf8SupportMap? _utf8SupportMap; 60Utf8SupportMap? utf8SupportMap) 115internal Utf8SupportMap? GetUtf8SupportMap() 118internal RazorCodeDocument WithUtf8SupportMap(Utf8SupportMap? value)
SourceGenerators\RazorSourceGenerator.cs (2)
386.Select(static (item, _) => new Utf8SupportMap.InheritsInfo( 393return Utf8SupportMap.Create(inheritsInfos, compilation);
SourceGenerators\SourceGeneratorProjectEngine.cs (1)
215public bool ProcessUtf8(SourceGeneratorRazorCodeDocument sgDocument, Utf8SupportMap utf8SupportMap, CancellationToken cancellationToken)