10 references to CallingMethod
Microsoft.CodeAnalysis.CSharp (10)
Binder\Binder.ValueChecks.cs (10)
138/// wider escape level. An destination that is <see cref="EscapeLevel.CallingMethod"/>
161EscapeLevel.CallingMethod => level == EscapeLevel.CallingMethod,
1254{ IsCallingMethod: true } => EscapeLevel.CallingMethod,
2534mixableArguments.Add(new MixableDestination(argument, EscapeLevel.CallingMethod));
2714escapeValues.Add(new EscapeValue(parameter: null, argument, EscapeLevel.CallingMethod, isRefEscape: false));
2785escapeValues.Add(new EscapeValue(parameter: null, argument, EscapeLevel.CallingMethod, isRefEscape: false));
2793escapeValues.Add(new EscapeValue(parameter, argument, EscapeLevel.CallingMethod, isRefEscape: false));
2798escapeValues.Add(new EscapeValue(parameter, argument, EscapeLevel.CallingMethod, isRefEscape: true));
4764if (escapeValue.IsRefEscape && escapeValue.EscapeLevel != EscapeLevel.CallingMethod)