Lines Matching defs:lua_debug
42 lua_Debug lua_debug;
71 if (lua_getinfo(raw_state, what_.c_str(), &_pimpl->lua_debug) == 0)
85 lua_getstack(raw_state, level, &_pimpl->lua_debug);
89 /// Accessor for the 'event' field of lua_Debug.
91 /// \return Returns the 'event' field of the internal lua_Debug structure.
95 return _pimpl->lua_debug.event;
99 /// Accessor for the 'name' field of lua_Debug.
101 /// \return Returns the 'name' field of the internal lua_Debug structure.
105 assert(_pimpl->lua_debug.name != NULL);
106 return _pimpl->lua_debug.name;
110 /// Accessor for the 'namewhat' field of lua_Debug.
112 /// \return Returns the 'namewhat' field of the internal lua_Debug structure.
116 assert(_pimpl->lua_debug.namewhat != NULL);
117 return _pimpl->lua_debug.namewhat;
121 /// Accessor for the 'what' field of lua_Debug.
123 /// \return Returns the 'what' field of the internal lua_Debug structure.
127 assert(_pimpl->lua_debug.what != NULL);
128 return _pimpl->lua_debug.what;
132 /// Accessor for the 'source' field of lua_Debug.
134 /// \return Returns the 'source' field of the internal lua_Debug structure.
138 assert(_pimpl->lua_debug.source != NULL);
139 return _pimpl->lua_debug.source;
143 /// Accessor for the 'currentline' field of lua_Debug.
145 /// \return Returns the 'currentline' field of the internal lua_Debug structure.
149 return _pimpl->lua_debug.currentline;
153 /// Accessor for the 'nups' field of lua_Debug.
155 /// \return Returns the 'nups' field of the internal lua_Debug structure.
159 return _pimpl->lua_debug.nups;
163 /// Accessor for the 'linedefined' field of lua_Debug.
165 /// \return Returns the 'linedefined' field of the internal lua_Debug structure.
169 return _pimpl->lua_debug.linedefined;
173 /// Accessor for the 'lastlinedefined' field of lua_Debug.
175 /// \return Returns the 'lastlinedefined' field of the internal lua_Debug
180 return _pimpl->lua_debug.lastlinedefined;
184 /// Accessor for the 'short_src' field of lua_Debug.
186 /// \return Returns the 'short_src' field of the internal lua_Debug structure.
190 assert(_pimpl->lua_debug.short_src != NULL);
191 return _pimpl->lua_debug.short_src;