2 instantiations of Utf8SupportMap
Microsoft.CodeAnalysis.Razor.Compiler (2)
CSharp\Utf8SupportMap.cs (2)
34public static readonly Utf8SupportMap Empty = new( 113: new Utf8SupportMap(fileToType.ToImmutable(), typeSupport.ToImmutable());
13 references to Utf8SupportMap
Microsoft.CodeAnalysis.Razor.Compiler (13)
CSharp\Utf8SupportMap.cs (6)
27internal sealed class Utf8SupportMap : IEquatable<Utf8SupportMap> 34public static readonly Utf8SupportMap Empty = new( 52/// Builds a <see cref="Utf8SupportMap"/> by resolving each file's <c>@inherits</c> to a 55public static Utf8SupportMap Create(ImmutableArray<InheritsInfo> inheritsInfos, Compilation compilation) 226public bool Equals(Utf8SupportMap? other) 259public 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)