GE Lua Documentation

Press F to search!

getlocal

Definition


-- @/=[C]:-1
function getlocal(...)

Callers

@/lua/common/extensions/ui/imguiUtils.lua
]]
local function getlocal(func)
  local index = 2
  local index = 2
  local param = debug.getlocal( func, 1 )
  if not param then
    imgui.Text(tostring(param))
    param = debug.getlocal( func, index )
    index = index + 1
      imgui.PushStyleColor2(imgui.Col_Text, imgui.ImVec4(0.7, 0.6, 0.4, 1))
      getlocal(data)
      imgui.PopStyleColor()
@/lua/common/utils/filterchain.lua
    while true do
      local ln, lv = debug.getlocal(2, idx)
      if ln ~= nil then
@/lua/common/libs/StackTracePlus/StackTracePlus.lua
      end
      return debug.getlocal(thread, level, loc)
    end

  local name, value = self.getlocal(level, i)
  if not name then
    i = i + 1
    name, value = self.getlocal(level, i)
  end
@/lua/ge/ge_utils.lua
  for i = 1, f.nparams do
    table.insert(parameters, debug.getlocal(func, i))
  end