summaryrefslogtreecommitdiff
path: root/vm_eval.c
diff options
context:
space:
mode:
Diffstat (limited to 'vm_eval.c')
-rw-r--r--vm_eval.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/vm_eval.c b/vm_eval.c
index 87fee5aa64..d9b2ec06b3 100644
--- a/vm_eval.c
+++ b/vm_eval.c
@@ -1272,8 +1272,8 @@ eval_make_iseq(VALUE src, VALUE fname, int line, const rb_binding_t *bind,
rb_parser_set_context(parser, base_block, FALSE);
ast = rb_parser_compile_string_path(parser, fname, src, line);
- if (ast->root) {
- iseq = rb_iseq_new_with_opt(ast->root,
+ if (ast->body.root) {
+ iseq = rb_iseq_new_with_opt(ast->body.root,
parent->body->location.label,
fname, realpath, INT2FIX(line),
parent, ISEQ_TYPE_EVAL, NULL);