Actions
Bug #19281
closedSyntaxError if first argument of command call has semicolon inside parenthesis
Bug #19281:
SyntaxError if first argument of command call has semicolon inside parenthesis
Description
These are syntax error
I expect it to be syntax ok because the code below is syntax ok.
It will be easy to traverse sexp if the sexp of first argument is same as others
Ripper.sexp "p (),(),()"
# =>
[:program,
[[:command,
[:@ident, "p", [1, 0]],
[:args_add_block,
[[:paren, false], # [:paren, [[:void_stmt]]]
[:paren, [[:void_stmt]]],
[:paren, [[:void_stmt]]]],
false]]]]
Ripper.sexp "p (1),(2),(3)"
# =>
[:program,
[[:command,
[:@ident, "p", [1, 0]],
[:args_add_block,
[[:paren, [:@int, "1", [1, 3]]], # [:paren, [[:@int, "1", [1, 3]]]]
[:paren, [[:@int, "2", [1, 7]]]],
[:paren, [[:@int, "3", [1, 11]]]]],
false]]]]
Actions