Exemplo n.º 1
0
        public SDSE_Compiler()
        {
            variableBracket = new IBracketHandler(this);
            types = new Dictionary<string, IObject_Constructor>();
            iTypes = new I_Types(this, ref types);

            userdefinedIObjects = new Dictionary<string, IObject>();
            preDefinedIObjects = new Dictionary<string, IObject>();

            operandTree = new OperandTree(ParsWithScope);
            diagnstics = new SDSE_Diagnostics();
        }
Exemplo n.º 2
0
        public SDSE_Compiler()
        {
            variableBracket = new IBracketHandler(this);
            types           = new Dictionary <string, IObject_Constructor>();
            iTypes          = new I_Types(this, ref types);

            userdefinedIObjects = new Dictionary <string, IObject>();
            preDefinedIObjects  = new Dictionary <string, IObject>();

            operandTree = new OperandTree(ParsWithScope);
            diagnstics  = new SDSE_Diagnostics();
        }