예제 #1
0
        public IEnumerable <IInstruction> LoadFunction(IMethod method)
        {
            EnsureMethod(method);
            var code = new AbcCode(_abc);
            var name = GetMethodName(method);

            code.GetProperty(name);
            code.CoerceFunction();
            return(code);
        }