1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

NEWS: Add RubyVM::AST

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@63536 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
yui-knk 2018-05-31 06:25:58 +00:00
parent d4a6aaa1e0
commit 9e82c4f1c1

5
NEWS
View file

@ -120,6 +120,11 @@ with all sufficient information, see the ChangeLog file or Redmine
* Range#=== now uses #cover? instead of #include? method. [Feature #14575]
* RubyVM::AST
* RubyVM::AST.parse parses a given string and returns AST nodes. [experimental]
* RubyVM::AST.parse_file parses a given file and returns AST nodes. [experimental]
* String
* String#split yields each substring to the block if given. [Feature #4780]