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)
210public IReadOnlyDictionary<MethodDesc, BodySubstitution> BodySubstitutions => _bodySubstitutions; 218if (_bodySubstitutions == null) 220_bodySubstitutions = other._bodySubstitutions; 223else if (other._bodySubstitutions == null) 229foreach (var kvp in other._bodySubstitutions) 230_bodySubstitutions[kvp.Key] = kvp.Value;