diff options
author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2009-02-27 05:23:10 +0000 |
---|---|---|
committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2009-02-27 05:23:10 +0000 |
commit | 1942710d429d393584a4fa78af8f7984c2c67f72 (patch) | |
tree | 76a71d7a058cc4c2f0b0fcac50f9bddd0dd91579 | |
parent | 770f854176b746226bfba50298450633bf4e1823 (diff) |
* lib/ostruct.rb (modifiable): check if really frozen.
[ruby-core:22559]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@22652 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | lib/ostruct.rb | 6 | ||||
-rw-r--r-- | test/ostruct/test_ostruct.rb | 4 |
3 files changed, 13 insertions, 2 deletions
@@ -1,3 +1,8 @@ +Fri Feb 27 14:23:09 2009 Nobuyoshi Nakada <[email protected]> + + * lib/ostruct.rb (modifiable): check if really frozen. + [ruby-core:22559] + Thu Feb 26 23:14:46 2009 Tanaka Akira <[email protected]> * ext/socket/lib/socket.rb (BasicSocket#connect_address): new method. diff --git a/lib/ostruct.rb b/lib/ostruct.rb index 45ebb8083e..0ac6852433 100644 --- a/lib/ostruct.rb +++ b/lib/ostruct.rb @@ -68,8 +68,10 @@ class OpenStruct end def modifiable - if self.frozen? - raise TypeError, "can't modify frozen #{self.class}", caller(2) + begin + @modifiable = true + rescue + raise TypeError, "can't modify frozen #{self.class}", caller(3) end @table end diff --git a/test/ostruct/test_ostruct.rb b/test/ostruct/test_ostruct.rb index 5e0f4b2418..8adfd0159a 100644 --- a/test/ostruct/test_ostruct.rb +++ b/test/ostruct/test_ostruct.rb @@ -43,5 +43,9 @@ class TC_OpenStruct < Test::Unit::TestCase assert_not_respond_to(o, :b) assert_raise(TypeError) {o.a = 'z'} assert_equal('a', o.a) + o = OpenStruct.new :a => 42 + def o.frozen?; nil end + o.freeze + assert_raise(TypeError, '[ruby-core:22559]') {o.a = 1764} end end |