Mosa.Compiler.Trace.CompilerTrace.UpdatedCompilerProgress C# (CSharp) Method

UpdatedCompilerProgress() public method

public UpdatedCompilerProgress ( int totalMethods, int completedMethods ) : void
totalMethods int
completedMethods int
return void
        public void UpdatedCompilerProgress(int totalMethods, int completedMethods)
        {
            if (TraceListener == null)
                return;

            TraceListener.OnUpdatedCompilerProgress(totalMethods, completedMethods);
        }