Boo.Lang.Compiler.Steps.ProcessMethodBodies.CheckVarArgsParameters C# (CSharp) Метод

CheckVarArgsParameters() защищенный Метод

protected CheckVarArgsParameters ( ICallableType method, Boo.Lang.Compiler.Ast.ExpressionCollection args ) : bool
method ICallableType
args Boo.Lang.Compiler.Ast.ExpressionCollection
Результат bool
        protected bool CheckVarArgsParameters(ICallableType method, ExpressionCollection args)
        {
            return CallableResolutionService.IsValidVargsInvocation(method.GetSignature().Parameters, args);
        }
ProcessMethodBodies