Browse Source

Fix build again.

pull/1586/head
Siegfried Pammer 6 years ago
parent
commit
b7bf6b7720
  1. 2
      ICSharpCode.Decompiler/CSharp/CallBuilder.cs

2
ICSharpCode.Decompiler/CSharp/CallBuilder.cs

@ -218,7 +218,7 @@ namespace ICSharpCode.Decompiler.CSharp @@ -218,7 +218,7 @@ namespace ICSharpCode.Decompiler.CSharp
if (method.IsLocalFunction) {
return new InvocationExpression(target, argumentList.GetArgumentExpressions())
.WithRR(new CSharpInvocationResolveResult(target.ResolveResult, method,
argumentList.GetArgumentResolveResults().ToList(), isExpandedForm: argumentList.IsExpandedForm, isLocalFunctionInvocation: true));
argumentList.GetArgumentResolveResults().ToList(), isExpandedForm: argumentList.IsExpandedForm));
}
if (method is VarArgInstanceMethod) {

Loading…
Cancel
Save