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);
272
if (!
_reflectionMarker
.TryResolveTypeNameAndMark(resolvedAssembly, typeName, _diagnosticContext, out TypeReference? foundType))
287
=>
_reflectionMarker
.MarkStaticConstructor(_diagnosticContext.Origin, type.Type);
290
=>
_reflectionMarker
.MarkEventsOnTypeHierarchy(_diagnosticContext.Origin, type.Type, e => e.Name == name, bindingFlags);
293
=>
_reflectionMarker
.MarkFieldsOnTypeHierarchy(_diagnosticContext.Origin, type.Type, f => f.Name == name, bindingFlags);
296
=>
_reflectionMarker
.MarkPropertiesOnTypeHierarchy(_diagnosticContext.Origin, type.Type, p => p.Name == name, bindingFlags);
299
=>
_reflectionMarker
.MarkConstructorsOnType(_diagnosticContext.Origin, type.Type, m => m.IsPublic && !m.HasMetadataParameters());
302
=>
_reflectionMarker
.MarkConstructorsOnType(_diagnosticContext.Origin, type.Type, (parameterCount == null) ? null : m => m.GetMetadataParametersCount() == parameterCount, bindingFlags);
305
=>
_reflectionMarker
.MarkMethod(_diagnosticContext.Origin, method.Method);
308
=>
_reflectionMarker
.MarkType(_diagnosticContext.Origin, type.Type);
314
_reflectionMarker
.MarkProperty(_diagnosticContext.Origin, propertyDefinition);