aboutsummaryrefslogtreecommitdiffstats
path: root/variable.c
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2016-05-27 08:38:50 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2016-05-27 08:38:50 +0000
commit9a1036e4f6473ebda795ee51921920b50a019169 (patch)
tree890d1d82387ccb44bb6ac69411d97ba100590bcd /variable.c
parent62e161c7ea5752e4a5a7893908262a5b8126b277 (diff)
downloadruby-9a1036e4f6473ebda795ee51921920b50a019169.tar.gz
variable.c: hidden constants
* variable.c (rb_local_constants_i): exclude hidden constants. [ruby-core:75575] [Bug #12389] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@55182 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'variable.c')
-rw-r--r--variable.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/variable.c b/variable.c
index db26268cfa..849be3abaa 100644
--- a/variable.c
+++ b/variable.c
@@ -2388,7 +2388,9 @@ sv_i(ID key, VALUE v, void *a)
static enum rb_id_table_iterator_result
rb_local_constants_i(ID const_name, VALUE const_value, void *ary)
{
- rb_ary_push((VALUE)ary, ID2SYM(const_name));
+ if (rb_is_const_id(const_name)) {
+ rb_ary_push((VALUE)ary, ID2SYM(const_name));
+ }
return ID_TABLE_CONTINUE;
}