hslua-core-2.3.1: Bindings to Lua, an embeddable scripting language
Copyright© 2023 Albert Krewinkel
LicenseMIT
MaintainerAlbert Krewinkel <tarleb@hslua.org>
Safe HaskellSafe-Inferred
LanguageHaskell2010

HsLua.Core.Debug

Description

Bindings to Lua's debug interface.

Synopsis

Documentation

getupvalue Source #

Arguments

:: StackIndex

funcindex

-> Int

n

-> LuaE e (Maybe Name) 

Gets information about the n-th upvalue of the closure at index funcindex. It pushes the upvalue's value onto the stack and returns its name. Returns Nothing (and pushes nothing) when the index n is greater than the number of upvalues.

See debug.getupvalue for more information about upvalues.

[0, +(0|1), -]

Wraps lua_getupvalue.

setupvalue Source #

Arguments

:: StackIndex

funcindex

-> Int

n

-> LuaE e (Maybe Name) 

Sets the value of a closure’s upvalue. It assigns the value on the top of the stack to the upvalue and returns its name. It also pops the value from the stack.

Returns Nothing (and pops nothing) when the index n is greater than the number of upvalues.

Parameters funcindex and n are as in the function getupvalue.

[-(0|1), +0, -]

Wraps lua_setupvalue.