feat(profile): more Lua information

This commit is contained in:
phaneron 2026-04-15 13:55:03 -04:00
parent 1479e2f5a0
commit fcf5f9352a
10 changed files with 233 additions and 12 deletions

View file

@ -140,6 +140,7 @@ struct UpVal {
struct CClosure {
GCObject* next;
uint32_t unk04;
lu_byte tt;
lu_byte marked;
lu_byte isC;
@ -155,7 +156,7 @@ struct LClosure {
lu_byte tt;
lu_byte marked;
lu_byte isC;
lu_byte nupvalues;
lu_byte nupvalues; // accessed at
GCObject* gclist;
Table* env;
Proto* p;