diff options
author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2015-10-05 17:29:04 +0000 |
---|---|---|
committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2015-10-05 17:29:04 +0000 |
commit | 355a0d8af1170db6249cd1269257cfcf2fd36050 (patch) | |
tree | 2ad79a34739445d02812dbeac61731df4f6c565d /compile.c | |
parent | 527883241e36264d9ad0ad08bad1b0f8a44359c5 (diff) |
compile.c: dstr head type
* compile.c (compile_dstr_fragments): head of dstr must be a
string.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@52047 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'compile.c')
-rw-r--r-- | compile.c | 7 |
1 files changed, 5 insertions, 2 deletions
@@ -2341,8 +2341,11 @@ compile_dstr_fragments(rb_iseq_t *iseq, LINK_ANCHOR *ret, NODE *node, int *cntp) debugp_param("nd_lit", lit); if (!NIL_P(lit)) { cnt++; - if (RB_TYPE_P(lit, T_STRING)) - lit = node->nd_lit = rb_fstring(node->nd_lit); + if (!RB_TYPE_P(lit, T_STRING)) { + rb_compile_bug(ERROR_ARGS "dstr: must be string: %s", + rb_builtin_type_name(TYPE(lit))); + } + lit = node->nd_lit = rb_fstring(lit); ADD_INSN1(ret, nd_line(node), putobject, lit); if (RSTRING_LEN(lit) == 0) first_lit = LAST_ELEMENT(ret); } |