Esempio n. 1
0
        public object CallReflected(CodeContext context, CallType callType, params object[] args)
        {
            TargetSet ts = GetTargetSet(args.Length);

            if (ts != null)
            {
                return(ts.CallReflected(context, callType, args, _kwArgs));
            }
            throw BadArgumentCount(callType, args.Length);
        }