1 write to _reflectionMarker
illink (1)
Linker.Dataflow\HandleCallAction.cs (1)
40
_reflectionMarker
= reflectionMarker;
11 references to _reflectionMarker
illink (11)
Linker.Dataflow\HandleCallAction.cs (11)
184
_reflectionMarker
.MarkType(_diagnosticContext.Origin, staticType);
293
if (!
_reflectionMarker
.TryResolveTypeNameAndMark(resolvedAssembly, typeName, _diagnosticContext, out TypeReference? foundType))
308
=>
_reflectionMarker
.MarkStaticConstructor(_diagnosticContext.Origin, type.Type);
311
=>
_reflectionMarker
.MarkEventsOnTypeHierarchy(_diagnosticContext.Origin, type.Type, e => e.Name == name, bindingFlags);
314
=>
_reflectionMarker
.MarkFieldsOnTypeHierarchy(_diagnosticContext.Origin, type.Type, f => f.Name == name, bindingFlags);
317
=>
_reflectionMarker
.MarkPropertiesOnTypeHierarchy(_diagnosticContext.Origin, type.Type, p => p.Name == name, bindingFlags);
320
=>
_reflectionMarker
.MarkConstructorsOnType(_diagnosticContext.Origin, type.Type, m => m.IsPublic && !m.HasMetadataParameters());
323
=>
_reflectionMarker
.MarkConstructorsOnType(_diagnosticContext.Origin, type.Type, (parameterCount == null) ? null : m => m.GetMetadataParametersCount() == parameterCount, bindingFlags);
326
=>
_reflectionMarker
.MarkMethod(_diagnosticContext.Origin, method.Method);
329
=>
_reflectionMarker
.MarkType(_diagnosticContext.Origin, type.Type);
335
_reflectionMarker
.MarkProperty(_diagnosticContext.Origin, propertyDefinition);