GE Lua Documentation

Press F to search!

jitprobe

Definition


-- @/lua/common/utils.lua:1347

function jitprobe()
  if not __jitprobeactive__ then
    if not __jitv__ then
      rawset(_G, '__jitv__', require("jit.v"))
    end
    rawset(_G, '__jitprobeactive__', true)
    __jitv__.on("-")
  else
    __jitv__.off("-")
    __jitprobeactive__ = false
  end
end

Callers