changed dbginfo functions and structures a bit

This commit is contained in:
hyunghwan.chung
2019-07-09 09:59:38 +00:00
parent e6d7cbd767
commit 8820c3db16
2 changed files with 35 additions and 19 deletions

View File

@ -974,8 +974,8 @@ typedef struct moo_dbginfo_file_t moo_dbginfo_file_t;
struct moo_dbginfo_file_t
{
moo_oow_t _type;
moo_oow_t _len;
moo_oow_t _next;
moo_oow_t name_len;
/* ... file path here ... */
};
@ -983,10 +983,10 @@ typedef struct moo_dbginfo_class_t moo_dbginfo_class_t;
struct moo_dbginfo_class_t
{
moo_oow_t _type;
moo_oow_t _len;
moo_oow_t _next; /* offset to a previous class */
moo_oow_t _file;
moo_oow_t _line;
moo_oow_t name_len;
/* ... class name here ... */
};
@ -994,10 +994,10 @@ typedef struct moo_dbginfo_method_t moo_dbginfo_method_t;
struct moo_dbginfo_method_t
{
moo_oow_t _type;
moo_oow_t _len;
moo_oow_t _next;
moo_oow_t _file;
moo_oow_t _class;
moo_oow_t name_len;
moo_oow_t code_loc_len;
/* ... method name here ... */
/* ... code info here ... */