summaryrefslogtreecommitdiff
path: root/ast.c
diff options
context:
space:
mode:
authorNobuyoshi Nakada <nobu@ruby-lang.org>2019-12-29 10:07:17 +0900
committerNobuyoshi Nakada <nobu@ruby-lang.org>2019-12-29 12:34:55 +0900
commitd7bef803ac3546119b30e1d78af0097a9df9c907 (patch)
tree9af60ade39db53f7d33142a125b8492672fcab5d /ast.c
parent8ce5d46e662f53a56cf21c47981bb99bcb5b73e6 (diff)
downloadruby-d7bef803ac3546119b30e1d78af0097a9df9c907.tar.gz
Separate builtin initialization calls
Diffstat (limited to 'ast.c')
-rw-r--r--ast.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/ast.c b/ast.c
index 3f7061a7b0..18a97239ff 100644
--- a/ast.c
+++ b/ast.c
@@ -690,6 +690,4 @@ Init_ast(void)
rb_mAST = rb_define_module_under(rb_cRubyVM, "AbstractSyntaxTree");
rb_cNode = rb_define_class_under(rb_mAST, "Node", rb_cObject);
rb_undef_alloc_func(rb_cNode);
-
- load_ast();
}