2 instantiations of LoggingType
Microsoft.Gen.Logging (2)
Parsing\Parser.cs (2)
318lt = new LoggingType 339currentLoggerClass.Parent = new LoggingType
12 references to LoggingType
Microsoft.Gen.Logging (12)
Emission\Emitter.cs (5)
21public string Emit(IEnumerable<LoggingType> logTypes, CancellationToken cancellationToken) 23foreach (var lt in logTypes.OrderBy(static lt => lt.Namespace + "." + lt.Name)) 32private void GenType(LoggingType lt) 41var parent = lt.Parent; 93private void GenAttributeClassifications(LoggingType lt)
LoggingGenerator.cs (1)
42IReadOnlyList<Model.LoggingType> logTypes = p.GetLogTypes(distinctTypes);
Model\LoggingType.cs (1)
20public LoggingType? Parent;
Parsing\Parser.cs (5)
35public IReadOnlyList<LoggingType> GetLogTypes(IEnumerable<TypeDeclarationSyntax> types) 42return Array.Empty<LoggingType>(); 47var results = new List<LoggingType>(); 61LoggingType? lt = null; 328LoggingType currentLoggerClass = lt;