From 5a176b75b1187cbd3861c387bde65ff66396a07c Mon Sep 17 00:00:00 2001 From: mame Date: Fri, 27 Oct 2017 16:02:34 +0000 Subject: Revert "Manage AST NODEs out of GC" This reverts commit 620ba74778bfdbdc34ffbb142d49ce84a0ef58e9. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@60486 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- template/prelude.c.tmpl | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) (limited to 'template/prelude.c.tmpl') diff --git a/template/prelude.c.tmpl b/template/prelude.c.tmpl index b791c14ae4..873146fc39 100644 --- a/template/prelude.c.tmpl +++ b/template/prelude.c.tmpl @@ -121,14 +121,10 @@ prelude_eval(VALUE code, VALUE name, int line) FALSE, /* int debug_frozen_string_literal; */ }; - ast_t *ast = rb_parser_compile_string_path(rb_parser_new(), name, code, line); - if (!ast->root) { - rb_ast_dispose(ast); - rb_exc_raise(rb_errinfo()); - } - rb_iseq_eval(rb_iseq_new_with_opt(ast->root, name, name, Qnil, INT2FIX(line), + NODE *node = rb_parser_compile_string_path(rb_parser_new(), name, code, line); + if (!node) rb_exc_raise(rb_errinfo()); + rb_iseq_eval(rb_iseq_new_with_opt(node, name, name, Qnil, INT2FIX(line), NULL, ISEQ_TYPE_TOP, &optimization)); - rb_ast_dispose(ast); } % end -- cgit v1.2.3