diff options
| author | wanabe <s.wanabe@gmail.com> | 2020-08-09 17:58:01 +0900 |
|---|---|---|
| committer | Kazuki Tsujimoto <kazuki@callcc.net> | 2020-08-16 18:39:08 +0900 |
| commit | 5c40c88a3e3361b77662b3f699fbffeb32663ce3 (patch) | |
| tree | ab358ff56546fccaa5c6904d34002d5ec25d049c | |
| parent | 691f10dd89e8a3feedab5bea823038469b3d6d66 (diff) | |
Adjust sp for `case ... in a: 0 ... end`
Notes
Notes:
Merged: https://github.com/ruby/ruby/pull/3403
| -rw-r--r-- | compile.c | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -6111,12 +6111,14 @@ iseq_compile_pattern_each(rb_iseq_t *iseq, LINK_ANCHOR *const ret, const NODE *c ADD_INSN(ret, line, pop); ADD_INSNL(ret, line, jump, matched); + ADD_INSN(ret, line, putnil); ADD_LABEL(ret, type_error); ADD_INSN1(ret, line, putspecialobject, INT2FIX(VM_SPECIAL_OBJECT_VMCORE)); ADD_INSN1(ret, line, putobject, rb_eTypeError); ADD_INSN1(ret, line, putobject, rb_fstring_lit("deconstruct_keys must return Hash")); ADD_SEND(ret, line, id_core_raise, INT2FIX(2)); + ADD_INSN(ret, line, pop); ADD_LABEL(ret, match_failed); ADD_INSN(ret, line, pop); |
