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)
231public IReadOnlyDictionary<MethodDesc, BodySubstitution> BodySubstitutions => _bodySubstitutions; 239if (_bodySubstitutions == null) 241_bodySubstitutions = other._bodySubstitutions; 244else if (other._bodySubstitutions == null) 250foreach (var kvp in other._bodySubstitutions) 251_bodySubstitutions[kvp.Key] = kvp.Value;