summaryrefslogtreecommitdiff
path: root/ast.c
diff options
context:
space:
mode:
authoryui-knk <yui-knk@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-10-20 04:41:19 +0000
committeryui-knk <yui-knk@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-10-20 04:41:19 +0000
commitfadde099e637e875d382d9182651e4d7f23dcc76 (patch)
tree8f6cb6d3c3cc133b4121dcdf0e33cc17542e0ae9 /ast.c
parent1c92766bf0b7394057c00f576fce5464a3037fd9 (diff)
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
Diffstat (limited to 'ast.c')
-rw-r--r--ast.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ast.c b/ast.c
index 128a806a1d..b5f40fad57 100644
--- a/ast.c
+++ b/ast.c
@@ -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")