10 references to CallingMethod
Microsoft.CodeAnalysis.CSharp (10)
Binder\Binder.ValueChecks.cs (10)
109/// wider escape level. An destination that is <see cref="EscapeLevel.CallingMethod"/>
132EscapeLevel.CallingMethod => level == EscapeLevel.CallingMethod,
1224{ IsCallingMethod: true } => EscapeLevel.CallingMethod,
2442mixableArguments.Add(new MixableDestination(argument, EscapeLevel.CallingMethod));
2622escapeValues.Add(new EscapeValue(parameter: null, argument, EscapeLevel.CallingMethod, isRefEscape: false));
2693escapeValues.Add(new EscapeValue(parameter: null, argument, EscapeLevel.CallingMethod, isRefEscape: false));
2701escapeValues.Add(new EscapeValue(parameter, argument, EscapeLevel.CallingMethod, isRefEscape: false));
2706escapeValues.Add(new EscapeValue(parameter, argument, EscapeLevel.CallingMethod, isRefEscape: true));
4655if (escapeValue.IsRefEscape && escapeValue.EscapeLevel != EscapeLevel.CallingMethod)