From 2fb06aabe6221468ddaeaa61056e4d487b97541a Mon Sep 17 00:00:00 2001 From: "Yukihiro \"Matz\" Matsumoto" Date: Tue, 7 Sep 2021 07:31:21 +0900 Subject: parse.y: refactor `mrb_parser_parse()`. - remove `mrb_jmpbuf` from `truct mrb_parser_state` - unify exception handling of `mrb_state` and `mrb_parser_state`. --- include/mruby/compile.h | 3 --- 1 file changed, 3 deletions(-) (limited to 'include') diff --git a/include/mruby/compile.h b/include/mruby/compile.h index 8159cd696..6732625c1 100644 --- a/include/mruby/compile.h +++ b/include/mruby/compile.h @@ -16,8 +16,6 @@ MRB_BEGIN_DECL #include -struct mrb_jmpbuf; - struct mrb_parser_state; /* load context */ typedef struct mrbc_context { @@ -165,7 +163,6 @@ struct mrb_parser_state { uint16_t filename_table_length; uint16_t current_filename_index; - struct mrb_jmpbuf* jmp; mrb_ast_node *nvars; }; -- cgit v1.2.3