2 writes to _bodySubstitutions
ILCompiler.Compiler (2)
Compiler\BodySubstitutionParser.cs (2)
235
=> (
_bodySubstitutions
, _fieldSubstitutions) = (bodySubstitutions, fieldSubstitutions);
241
_bodySubstitutions
= other._bodySubstitutions;
6 references to _bodySubstitutions
ILCompiler.Compiler (6)
Compiler\BodySubstitutionParser.cs (6)
231
public IReadOnlyDictionary<MethodDesc, BodySubstitution> BodySubstitutions =>
_bodySubstitutions
;
239
if (
_bodySubstitutions
== null)
241
_bodySubstitutions = other.
_bodySubstitutions
;
244
else if (other.
_bodySubstitutions
== null)
250
foreach (var kvp in other.
_bodySubstitutions
)
251
_bodySubstitutions
[kvp.Key] = kvp.Value;