New calling conventions, start on print.cpp

This commit is contained in:
2021-09-07 17:37:23 -04:00
parent 924a5ec987
commit 6b2ebba84d
16 changed files with 216 additions and 104 deletions

View File

@@ -163,11 +163,11 @@ public:
// If there's already a table with this name in the global environment,
// leaves it there, and repairs the __class and __index fields.
//
int source_makeclass(lua_State *L);
int lfn_source_makeclass(lua_State *L);
// Return true if the specified table is a class created by 'makeclass'
//
int source_isclass(lua_State *L);
int lfn_source_isclass(lua_State *L);
#endif // SOURCE_HPP