Exemplo n.º 1
0
        public override void VisitCall(CallInstruction x)
        {
            var args = new List <Expression>();

            foreach (var arg in x.Arguments)
            {
                args.Add(getValue(arg));
            }

            emit(_compiler.Call(x.IsStatic(), x.Method.Info, args));
        }