diff options
author | Aaron Patterson <[email protected]> | 2019-09-09 15:46:07 -0700 |
---|---|---|
committer | Aaron Patterson <[email protected]> | 2019-09-26 15:41:46 -0700 |
commit | 293c6c8cc3cd9a9cb2910672589ee3631e1f1653 (patch) | |
tree | ba7330ecfac15e4a60c88db7994a6a38d36da2c2 /gc.c | |
parent | 37f9213f8957e0c6dffee7d8803890907f97bdbb (diff) |
Add compaction support to `rb_ast_t`
This commit adds compaction support to `rb_ast_t`.
Diffstat (limited to 'gc.c')
-rw-r--r-- | gc.c | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -7918,6 +7918,8 @@ gc_ref_update_imemo(rb_objspace_t *objspace, VALUE obj) rb_iseq_update_references((rb_iseq_t *)obj); break; case imemo_ast: + rb_ast_update_references((rb_ast_t *)obj); + break; case imemo_parser_strterm: case imemo_tmpbuf: break; |