1 write to Body
illink (1)
Linker\MethodIL.cs (1)
17
MethodIL(MethodBody body) => this.
Body
= body;
10 references to Body
illink (10)
Linker.Dataflow\MethodBodyScanner.cs (1)
303
MethodBody methodBody = methodIL.
Body
;
Linker.Dataflow\ReflectionMethodBodyScanner.cs (1)
118
var reflectionProcessed = _markStep.ProcessReflectionDependency(callingMethodIL.
Body
, operation);
Linker.Steps\MarkStep.cs (4)
2797
if (body.
Body
.CodeSize != 1)
3848
if (_compilerGeneratedMethodRequiresScanner.TryGetValue(methodIL.
Body
, out bool requiresReflectionMethodBodyScanner))
3867
_compilerGeneratedMethodRequiresScanner.Add(methodIL.
Body
, requiresReflectionMethodBodyScanner);
3869
PostMarkMethodBody(methodIL.
Body
);
Linker\MethodIL.cs (4)
21
public MethodDefinition Method =>
Body
.Method;
24
public Collection<Instruction> Instructions =>
Body
.Instructions;
25
public Collection<ExceptionHandler> ExceptionHandlers =>
Body
.ExceptionHandlers;
26
public Collection<VariableDefinition> Variables =>
Body
.Variables;