summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoryui-knk <yui-knk@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-05-31 06:25:58 +0000
committeryui-knk <yui-knk@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-05-31 06:25:58 +0000
commit9e82c4f1c18ff796629fd4ba9365462c276306c9 (patch)
tree40a5d0164527b9f5f764d1914b4b0fae029bbc83
parentd4a6aaa1e003264e4a71279daf9ce527486fca82 (diff)
NEWS: Add RubyVM::AST
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@63536 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--NEWS5
1 files changed, 5 insertions, 0 deletions
diff --git a/NEWS b/NEWS
index 6673ed8eae..3650f12604 100644
--- a/NEWS
+++ b/NEWS
@@ -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]