WoWInterface SVN OpenRDX

Compare Revisions

  • This comparison shows the changes necessary to convert path
    /trunk/RDX/IdeEditor/Debug
    from Rev 608 to Rev 627
    Reverse comparison

Rev 608 → Rev 627

CompilerCache.lua
13,6 → 13,14
ccCache[key] = value;
end
 
function RDXM_Debug.IsStoreCompiledObject(key)
if ccCache[key] then return true; else return nil; end
end
 
function RDXM_Debug.GetStoreCompiledObject(key)
return ccCache[key];
end
 
-- Register a menu hook to view compiled code on path entries that have it.
RDXDB.RegisterObjectMenuHandler(function(mnu, opath, dialog)
if ccCache[opath] then
26,6 → 34,7
 
local function EnableStoreCompiler()
RDXG.cdebug = true;
VFLReloadUI();
end
 
local function DisableStoreCompiler()
52,7 → 61,6
 
RDXEvents:Bind("INIT_VARIABLES_LOADED", nil, function()
if RDXG.cdebug then
EnableStoreCompiler();
RDX.printW("Store Compiler code Activated !!!");
end
end);