示例#1
0
        public DefaultExecutor(LuaContext ctx)
        {
            var defaultExecutor = new InterpreterExecutor(ctx);

            this.executors = new Stack <IExecutor> ();
            this.executors.Push(defaultExecutor);
        }
        public DefaultExecutor(LuaContext ctx)
        {
            var defaultExecutor = new InterpreterExecutor (ctx);

            this.executors = new Stack<IExecutor> ();
            this.executors.Push (defaultExecutor);
        }