summaryrefslogtreecommitdiff
path: root/internal.h
diff options
context:
space:
mode:
authorJean Boussier <jean.boussier@gmail.com>2019-05-07 12:52:24 +0200
committerNobuyoshi Nakada <nobu@ruby-lang.org>2019-06-21 17:28:37 +0900
commitfb85a428605265a8fd449b0702a4dd88cb6f3b20 (patch)
tree0e5f9df92b010b026cfab40a54a1778f55f93e61 /internal.h
parent887163beb8f27c5400cd04dbf98c474ed035526f (diff)
Add an optional `inherit` argument to Module#autoload?
[Feature #15777] Closes: https://github.com/ruby/ruby/pull/2173
Diffstat (limited to 'internal.h')
-rw-r--r--internal.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/internal.h b/internal.h
index b1e6aec0dd..7443278a0f 100644
--- a/internal.h
+++ b/internal.h
@@ -2200,6 +2200,7 @@ VALUE rb_search_class_path(VALUE);
VALUE rb_attr_delete(VALUE, ID);
VALUE rb_ivar_lookup(VALUE obj, ID id, VALUE undef);
void rb_autoload_str(VALUE mod, ID id, VALUE file);
+VALUE rb_autoload_at_p(VALUE, ID, VALUE);
void rb_deprecate_constant(VALUE mod, const char *name);
NORETURN(VALUE rb_mod_const_missing(VALUE,VALUE));
rb_gvar_getter_t *rb_gvar_getter_function_of(const struct rb_global_entry *);