Rename struct mrb_locals to struct mrb_lvinfo.

That stands for "local variable information".
This commit is contained in:
Yukihiro "Matz" Matsumoto
2020-06-08 19:17:59 +09:00
parent ad15e59cd9
commit daa37be549
5 changed files with 9 additions and 9 deletions
+2 -2
View File
@@ -21,7 +21,7 @@ enum irep_pool_type {
IREP_TT_FLOAT,
};
struct mrb_locals {
struct mrb_lvinfo { /* local variable info (name, idx) */
mrb_sym name;
uint16_t r;
};
@@ -37,7 +37,7 @@ typedef struct mrb_irep {
const mrb_sym *syms;
const struct mrb_irep **reps;
const struct mrb_locals *lv;
const struct mrb_lvinfo *lv;
/* debug info */
struct mrb_irep_debug_info* debug_info;