mirror of
https://github.com/ruby/ruby.git
synced 2025-09-15 08:33:58 +02:00
id.def: internal IDs
* defs/id.def: move internal IDs for frozen-string-literal-debug. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@52300 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
caada48ee8
commit
2ce7328dea
4 changed files with 11 additions and 5 deletions
5
error.c
5
error.c
|
@ -2227,10 +2227,9 @@ void
|
|||
rb_error_frozen_object(VALUE frozen_obj)
|
||||
{
|
||||
VALUE path, line;
|
||||
ID created_path, created_line;
|
||||
const ID created_path = id_debug_created_path;
|
||||
const ID created_line = id_debug_created_line;
|
||||
|
||||
CONST_ID(created_path, "__object_created_path__");
|
||||
CONST_ID(created_line, "__object_created_line__");
|
||||
if (!NIL_P(path = rb_attr_get(frozen_obj, created_path)) &&
|
||||
!NIL_P(line = rb_attr_get(frozen_obj, created_line))) {
|
||||
rb_raise(rb_eRuntimeError, "can't modify frozen %"PRIsVALUE", created at %"PRIsVALUE":%"PRIsVALUE,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue