2 instantiations of LoggingType
Microsoft.Gen.Logging (2)
Parser.cs (2)
327lt = new LoggingType 348currentLoggerClass.Parent = new LoggingType
12 references to LoggingType
Microsoft.Gen.Logging (12)
Emitter.cs (5)
24public string Emit(IEnumerable<LoggingType> logTypes, CancellationToken cancellationToken) 26foreach (var lt in logTypes.OrderBy(static lt => lt.Namespace + "." + lt.Name)) 35private void GenType(LoggingType lt) 44var parent = lt.Parent; 96private void GenAttributeClassifications(LoggingType lt)
LoggingGenerator.cs (1)
42IReadOnlyList<Model.LoggingType> logTypes = p.GetLogTypes(distinctTypes);
LoggingType.cs (1)
20public LoggingType? Parent;
Parser.cs (5)
44public IReadOnlyList<LoggingType> GetLogTypes(IEnumerable<TypeDeclarationSyntax> types) 51return Array.Empty<LoggingType>(); 56var results = new List<LoggingType>(); 70LoggingType? lt = null; 337LoggingType currentLoggerClass = lt;