Add docs to RubyVM::AbstractSyntaxTree.of

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@65666 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
yui-knk 2018-11-11 12:15:15 +00:00
Родитель 9f41da42eb
Коммит 66f239c537
1 изменённых файлов: 17 добавлений и 0 удалений

17
ast.c
Просмотреть файл

@ -200,6 +200,23 @@ script_lines(VALUE path)
return lines;
}
/*
* call-seq:
* RubyVM::AbstractSyntaxTree.of(proc) -> RubyVM::AbstractSyntaxTree::Node
* RubyVM::AbstractSyntaxTree.of(method) -> RubyVM::AbstractSyntaxTree::Node
*
* Returns AST nodes of the given proc or method.
*
* RubyVM::AbstractSyntaxTree.of(proc {1 + 2})
* # => #<RubyVM::AbstractSyntaxTree::Node(NODE_SCOPE(0) 1:35, 1:42): >
*
* def hello
* puts "hello, world"
* end
*
* RubyVM::AbstractSyntaxTree.of(method(:hello))
* # => #<RubyVM::AbstractSyntaxTree::Node(NODE_SCOPE(0) 1:0, 3:3): >
*/
static VALUE
rb_ast_s_of(VALUE module, VALUE body)
{