Mosa.Tool.Explorer.ExplorerCompiler.CreateMethodCompiler C# (CSharp) Method

CreateMethodCompiler() protected method

Creates a method compiler
protected CreateMethodCompiler ( MosaMethod method, BasicBlocks basicBlocks, int threadID ) : BaseMethodCompiler
method MosaMethod The method to compile.
basicBlocks BasicBlocks The basic blocks.
threadID int
return Mosa.Compiler.Framework.BaseMethodCompiler
        protected override BaseMethodCompiler CreateMethodCompiler(MosaMethod method, BasicBlocks basicBlocks, int threadID)
        {
            return new ExplorerMethodCompiler(this, method, basicBlocks, threadID);
        }