blob: 5f141e18a5f6afc71fb6a948d22a120c55242d38 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
/*
* Copyright (c) 2013-2016 Isode Limited.
* All rights reserved.
* See the COPYING file for more information.
*/
#pragma once
#include <iostream>
#include <lua.hpp>
namespace Swift {
namespace Lua {
inline void dumpStack(lua_State *L) {
for (int i = 1; i <= lua_gettop(L); i++) {
int type = lua_type(L, i);
std::cout << i << ": [" << lua_typename(L, type) << "] ";
switch (type) {
case LUA_TSTRING: std::cout << lua_tostring(L, i); break;
case LUA_TNUMBER: std::cout << lua_tonumber(L, i); break;
case LUA_TBOOLEAN: std::cout << lua_toboolean(L, i); break;
default: break;
}
std::cout << std::endl;
}
}
}
}
|