summaryrefslogtreecommitdiff
path: root/NEWS
diff options
context:
space:
mode:
authoryui-knk <yui-knk@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-11-09 01:37:41 +0000
committeryui-knk <yui-knk@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-11-09 01:37:41 +0000
commit1d7d08262e07b7d0d11ec2d4efa29ad2b52c565a (patch)
tree0e1a80d4e98a0f474652d0be34bdf6ccedf296f8 /NEWS
parentf67c0e567108f0c9ee7c1f92edce4bc1f9df347a (diff)
Rename `AST` module to `AbstractSyntaxTree`
Follow the same naming convention of `InstructionSequence` class. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@65641 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'NEWS')
-rw-r--r--NEWS8
1 files changed, 4 insertions, 4 deletions
diff --git a/NEWS b/NEWS
index 3c692fcd89..a4b07925b3 100644
--- a/NEWS
+++ b/NEWS
@@ -226,17 +226,17 @@ sufficient information, see the ChangeLog file or Redmine
* Range#step now returns an instance of Enumerator::ArithmeticSequence
class rather than one of Enumerator class.
-[RubyVM::AST]
+[RubyVM::AbstractSyntaxTree]
[New methods]
- * RubyVM::AST.parse parses a given string and returns AST
+ * RubyVM::AbstractSyntaxTree.parse parses a given string and returns AST
nodes. [experimental]
- * RubyVM::AST.parse_file parses a given file and returns AST
+ * RubyVM::AbstractSyntaxTree.parse_file parses a given file and returns AST
nodes. [experimental]
- * RubyVM::AST.of returns AST nodes of the given proc or method.
+ * RubyVM::AbstractSyntaxTree.of returns AST nodes of the given proc or method.
[experimental]
[String]