mirror of
https://github.com/mruby/mruby
synced 2026-06-08 16:11:16 +00:00
Update y.tab.c; ref #4933
This commit is contained in:
@@ -12173,6 +12173,16 @@ mrbc_partial_hook(mrb_state *mrb, mrbc_context *c, int (*func)(struct mrb_parser
|
||||
c->partial_data = data;
|
||||
}
|
||||
|
||||
MRB_API void
|
||||
mrbc_cleanup_local_variables(mrb_state *mrb, mrbc_context *c)
|
||||
{
|
||||
if (c->syms) {
|
||||
mrb_free(mrb, c->syms);
|
||||
c->syms = NULL;
|
||||
c->slen = 0;
|
||||
}
|
||||
}
|
||||
|
||||
MRB_API void
|
||||
mrb_parser_set_filename(struct mrb_parser_state *p, const char *f)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user