mirror of
https://github.com/ruby/ruby.git
synced 2025-09-16 09:04:05 +02:00

benchmarks for [Bug #13113] [ci skip] variable.c: resolve permanent name only * variable.c (rb_const_set): resolve and cache class name immediately only if the outer class/module has the name, otherwise just set the ID. [ruby-core:79007] [Bug #13113] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_2_4@57850 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
5 lines
95 B
Ruby
5 lines
95 B
Ruby
i = 0
|
|
while i<6_000_000 # benchmark loop 2
|
|
i += 1
|
|
Module.new.const_set(:X, Module.new)
|
|
end
|