mirror of
https://github.com/mruby/mruby
synced 2026-06-08 16:11:16 +00:00
Rename struct mrb_locals to struct mrb_lvinfo.
That stands for "local variable information".
This commit is contained in:
@@ -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;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user