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