From 93843830198ba436e2ea21a60a11758d47cf521b Mon Sep 17 00:00:00 2001 From: Nobuyoshi Nakada Date: Thu, 13 Dec 2018 21:49:05 +0900 Subject: Module#constant_source_location [Feature #10771] --- constant.h | 3 +++ 1 file changed, 3 insertions(+) (limited to 'constant.h') diff --git a/constant.h b/constant.h index 6c8cda08db..f1a13feedb 100644 --- a/constant.h +++ b/constant.h @@ -47,5 +47,8 @@ int rb_public_const_defined_at(VALUE klass, ID id); int rb_public_const_defined_from(VALUE klass, ID id); rb_const_entry_t *rb_const_lookup(VALUE klass, ID id); int rb_autoloading_value(VALUE mod, ID id, VALUE *value, rb_const_flag_t *flag); +VALUE rb_const_source_location(VALUE, ID); +VALUE rb_const_source_location_from(VALUE, ID); +VALUE rb_const_source_location_at(VALUE, ID); #endif /* CONSTANT_H */ -- cgit v1.2.1