4 writes to Interfaces
Microsoft.AspNetCore.Razor.Language.UnitTests (3)
DefaultRazorCSharpLoweringPhaseTest.cs (3)
274Interfaces = [IntermediateNodeFactory.CSharpToken("IFoo"), IntermediateNodeFactory.CSharpToken("IBar")], 320Interfaces = [IntermediateNodeFactory.CSharpToken("IFoo"), IntermediateNodeFactory.CSharpToken("IBar")], 369Interfaces = [IntermediateNodeFactory.CSharpToken("IFoo"), IntermediateNodeFactory.CSharpToken("IBar")],
Microsoft.CodeAnalysis.Razor.Compiler (1)
Language\Extensions\ImplementsDirectivePass.cs (1)
40@class.Interfaces = interfaces.ToImmutableAndClear();
6 references to Interfaces
Microsoft.AspNetCore.Razor.Test.Common (1)
Language\IntegrationTests\IntermediateNodeWriter.cs (1)
46string.Join(", ", node.Interfaces.Select(i => i.Content))
Microsoft.CodeAnalysis.Razor.Compiler (5)
Language\DefaultRazorCSharpLoweringPhase.cs (1)
179node.Interfaces,
Language\Extensions\ImplementsDirectivePass.cs (2)
26interfaces.AddRange(@class.Interfaces); 38if (interfaces.Count > @class.Interfaces.Length)
Language\Intermediate\ClassDeclarationIntermediateNode.cs (2)
29formatter.WriteProperty(nameof(Interfaces), string.Join(", ", Interfaces.Select(i => i.Content)));