Ejemplo n.º 1
0
        /// <summary>
        /// A Manager object is responsible for memory management, type evaluation and loading of plugins
        /// </summary>
        public Manager()
        {
            scanner = new ScannerPrototype();

            sharedMemory = Memory.AllocateSharedMemory();

            routines = new Dictionary <string, Routine>();

            locks = new Dictionary <object, Interpreter>();

            debug = false;

            optimize = true;
        }