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

ast.c: Fix the documents of RubyVM::AST.parse and RubyVM::AST.parse_file

* ast.c: r63602 fixed to raise `SyntaxError` when `RubyVM::AST.parse`
  or `RubyVM::AST.parse_file` fail to parse input.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@65194 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
yui-knk 2018-10-20 04:41:19 +00:00
parent 1c92766bf0
commit fadde099e6

4
ast.c
View file

@ -58,7 +58,7 @@ ast_new_internal(rb_ast_t *ast, NODE *node)
* Parses the given string into an abstract syntax tree,
* returning the root node of that tree.
*
* Returns <code>nil</code> if the given string is invalid syntax.
* SyntaxError is raised if the given string is invalid syntax.
*
* RubyVM::AST.parse("x = 1 + 2")
* # => #<RubyVM::AST::Node(NODE_SCOPE(0) 1:0, 1:9): >
@ -92,7 +92,7 @@ rb_ast_s_parse(VALUE module, VALUE str)
* Reads the file from <code>pathname</code>, then parses it like ::parse,
* returning the root node of the abstract syntax tree.
*
* Returns <code>nil</code> if <code>pathname</code>'s contents are not
* SyntaxError is raised if <code>pathname</code>'s contents are not
* valid Ruby syntax.
*
* RubyVM::AST.parse_file("my-app/app.rb")