Esempio n. 1
0
        public Compiler(IForeignStaticInterface foreignInterface, IMacroProcessor macroProcessor)
        {
            mForeignInterface = foreignInterface;
            mMacroProcessor   = macroProcessor;

            //### bob: temp testing
            mMacroProcessor = new HackTempMacro();

            mFunctions = new FunctionTable(this);
            mTypes     = new TypeTable(this);
        }
Esempio n. 2
0
 public Compiler(IForeignStaticInterface foreignInterface)
     : this(foreignInterface, null)
 {
 }