예제 #1
0
파일: Closure.cs 프로젝트: dw4dev/Phalanger
        public static object __invoke(object/*!*/instance, PhpStack/*!*/stack)
        {
            var closure = (Closure)instance;

            stack.ExpandFrame(closure.@static);

            return closure.lambda(instance, stack);
        }