* NEWS: + RubyVM::InstructionSequence new methods

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@39401 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
marcandre 2013-02-22 23:17:06 +00:00
parent 1ac0694c58
commit 11354e242a

5
NEWS
View File

@ -143,6 +143,11 @@ with all sufficient information, see the ChangeLog file.
* added Range#bsearch for binary search.
* RubyVM (MRI specific)
* added RubyVM::InstructionSequence.of to get the instruction sequence
from a method or a block.
* added RubyVM::InstructionSequence#path, #absolute_path, #label,
#base_label and #first_lineno to retrieve information from where
the instruction sequence was defined.
* added Environment variables to specify stack usage:
* RUBY_THREAD_VM_STACK_SIZE: vm stack size used at thread creation.
default: 128KB (32bit CPU) or 256KB (64bit CPU).