2 writes to _bodySubstitutions
ILCompiler.Compiler (2)
Compiler\BodySubstitutionParser.cs (2)
214
=> (
_bodySubstitutions
, _fieldSubstitutions) = (bodySubstitutions, fieldSubstitutions);
220
_bodySubstitutions
= other._bodySubstitutions;
6 references to _bodySubstitutions
ILCompiler.Compiler (6)
Compiler\BodySubstitutionParser.cs (6)
210
public IReadOnlyDictionary<MethodDesc, BodySubstitution> BodySubstitutions =>
_bodySubstitutions
;
218
if (
_bodySubstitutions
== null)
220
_bodySubstitutions = other.
_bodySubstitutions
;
223
else if (other.
_bodySubstitutions
== null)
229
foreach (var kvp in other.
_bodySubstitutions
)
230
_bodySubstitutions
[kvp.Key] = kvp.Value;