KOBAYASHI Shuji
8fa3995a1a
Singleton class of frozen object should be frozen
...
Before this patch:
p (class << Object.new.freeze; self end).frozen? #=> false
sc = class << (o=Object.new); self end; o.freeze; p sc.frozen? #=> false
After this patch / Ruby:
p (class << Object.new.freeze; self end).frozen? #=> true
sc = class << (o=Object.new); self end; o.freeze; p sc.frozen? #=> true
2019-04-25 19:48:40 +09:00
..
2019-04-06 17:40:51 +09:00
2019-02-17 15:52:16 +09:00
2019-04-01 14:13:06 +09:00
2019-03-25 22:05:31 +09:00
2018-10-29 14:07:16 +09:00
2019-01-09 20:00:17 +09:00
2018-08-30 22:30:36 +09:00
2018-12-04 08:41:09 +09:00
2017-10-17 11:19:12 +09:00
2019-04-14 20:35:19 +09:00
2019-01-03 18:16:26 +09:00
2019-02-18 21:50:08 +09:00
2018-11-19 10:57:07 +09:00
2019-04-21 20:34:39 +09:00
2017-03-02 10:58:26 +09:00
2018-10-23 21:10:03 +09:00
2017-09-27 22:22:04 +02:00
2018-08-25 09:16:01 +09:00
2018-11-19 12:08:28 +09:00
2019-01-03 11:29:10 +09:00
2019-04-15 17:16:08 +09:00
2019-01-03 11:34:35 +09:00
2019-03-29 09:40:13 +09:00
2019-04-25 19:48:40 +09:00
2019-04-04 22:17:26 +09:00
2019-01-03 11:34:35 +09:00
2019-01-03 11:34:35 +09:00
2019-01-03 11:34:35 +09:00
2019-03-25 22:05:31 +09:00
2019-01-25 08:15:27 +09:00
2019-04-01 14:13:06 +09:00
2019-04-17 21:04:46 +09:00
2019-01-04 14:46:17 +09:00
2019-01-26 18:37:53 +09:00
2019-02-18 21:24:20 +09:00
2019-01-03 11:34:35 +09:00
2019-03-15 22:49:40 +09:00
2019-04-09 18:23:11 +09:00
2019-02-12 17:30:34 +09:00
2019-04-22 22:29:15 +09:00
2019-03-02 14:13:06 +09:00
2018-08-30 22:30:36 +09:00
2018-08-30 22:30:36 +09:00
2018-12-25 23:17:10 +09:00