Actions
Bug #21137
closed
Compound assignment operator with "it" parsed differently between parse.y and prism
Description
# parse.y OK: no error
# prism OK: no error
proc { it = 1 }
# parse.y OK: no error
# prism OK: no error
proc { it = it + 1 }
# parse.y OK: no error
# prism NG: syntax errors found (SyntaxError)
proc { it += 1 }
Actions
Like0
Like0Like0Like0Like0Like0Like0Like0