We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9e5d7d0 commit 9222743Copy full SHA for 9222743
ContextSystem/Contexts/MethodContext.cs
@@ -34,7 +34,7 @@ public override TryAddTokenRes TryAddToken(BaseToken token)
34
35
public override Result VerifyCurrentState()
36
{
37
- return Result.Assert(_providedArguments >= Method.ExpectedArguments.Count(arg => arg.DefaultValue is not null),
+ return Result.Assert(_providedArguments >= Method.ExpectedArguments.Count(arg => arg.DefaultValue is null),
38
$"Method '{Method.Name}' is missing required arguments: " +
39
$"{", ".Join(Method.ExpectedArguments.Skip(_providedArguments).Select(arg => arg.Name))}");
40
}
0 commit comments