Actions
Bug #20457
closedFinal `return` is eliminated from the AST
Description
Given the following code:
def foo
a = 1
return a
end
If you parse this with RubyVM::AbstractSyntaxTree, the AST will be missing the return
node. Of course the return
node isn't necessary for compilation, but would be required for building an LSP for example.
Here's a full program to demonstrate:
ast = RubyVM::AbstractSyntaxTree.parse DATA.read
pp ast
# Output is like this:
#
# (SCOPE@1:0-4:3
# tbl: []
# args: nil
# body:
# (DEFN@1:0-4:3
# mid: :foo
# body:
# (SCOPE@1:0-4:3
# tbl: [:a]
# args: (ARGS@1:7-1:7 pre_num: 0 pre_init: nil opt: nil first_post: nil post_num: 0 post_init: nil rest: nil kw: nil kwrest: nil block: nil)
# body: (BLOCK@2:2-3:10 (LASGN@2:2-2:7 :a (INTEGER@2:6-2:7 1)) (LVAR@3:9-3:10 :a)))))
__END__
def foo
a = 1
return a
end
Btw, I'm happy to write failing tests for this type of stuff I'm just not sure where to put it! :)
Actions
Like0
Like0Like0Like0Like0Like0