summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--load.c11
-rw-r--r--vm.c12
2 files changed, 13 insertions, 10 deletions
diff --git a/load.c b/load.c
index 544357daba..d3ea6d7512 100644
--- a/load.c
+++ b/load.c
@@ -943,16 +943,7 @@ load_ext(VALUE path)
return (VALUE)dln_load(RSTRING_PTR(path));
}
-/*
- * call-seq:
- * RubyVM.resolve_feature_path(feature) -> [:rb or :so, path]
- *
- * Identifies the file that will be loaded by "require(feature)".
- * This API is experimental and just for internal.
- *
- * RubyVM.resolve_feature_path("set")
- * #=> [:rb, "/path/to/feature.rb"]
- */
+/* Method is documented in vm.c */
VALUE
rb_resolve_feature_path(VALUE klass, VALUE fname)
diff --git a/vm.c b/vm.c
index b54d67bf5a..3e73e64d08 100644
--- a/vm.c
+++ b/vm.c
@@ -2889,6 +2889,18 @@ static VALUE usage_analysis_operand_stop(VALUE self);
static VALUE usage_analysis_register_stop(VALUE self);
#endif
+/*
+ * Document-method: RubyVM::resolve_feature_path
+ * call-seq:
+ * RubyVM.resolve_feature_path(feature) -> [:rb or :so, path]
+ *
+ * Identifies the file that will be loaded by "require(feature)".
+ * This API is experimental and just for internal.
+ *
+ * RubyVM.resolve_feature_path("set")
+ * #=> [:rb, "/path/to/feature.rb"]
+ */
+
VALUE rb_resolve_feature_path(VALUE klass, VALUE fname);
void