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