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

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

protected CheckParameters ( ICallableType method, Boo.Lang.Compiler.Ast.ExpressionCollection args, bool reportErrors ) : bool
method ICallableType
args Boo.Lang.Compiler.Ast.ExpressionCollection
reportErrors bool
Результат bool
        protected virtual bool CheckParameters(ICallableType method, ExpressionCollection args, bool reportErrors)
        {
            BindNullableParameters(args, method);
            return AcceptVarArgs(method)
                ? CheckVarArgsParameters(method, args)
                : CheckExactArgsParameters(method, args, reportErrors);
        }
ProcessMethodBodies