aboutsummaryrefslogtreecommitdiffstats
path: root/class.c
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2016-11-12 09:43:05 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2016-11-12 09:43:05 +0000
commit58efee3269395db403097280f0a07aeaf3977e52 (patch)
tree289b86fc2f871f170569ee9c6b4c3083d4c27005 /class.c
parentefce48f13cc1fc5a71659d9dbd7dfa52c8038629 (diff)
downloadruby-58efee3269395db403097280f0a07aeaf3977e52.tar.gz
class.c: no fstring singleton class
* class.c (singleton_class_of): prohibit fstrings from creating singleton classes. temporary measure for [ruby-dev:49867] [Bug #12923] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@56747 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'class.c')
-rw-r--r--class.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/class.c b/class.c
index aed3ee42f2..350e2cc31b 100644
--- a/class.c
+++ b/class.c
@@ -1602,6 +1602,9 @@ singleton_class_of(VALUE obj)
switch (BUILTIN_TYPE(obj)) {
case T_FLOAT: case T_BIGNUM: case T_SYMBOL:
goto no_singleton;
+ case T_STRING:
+ if (FL_TEST_RAW(obj, RSTRING_FSTR)) goto no_singleton;
+ break;
}
}