Need to reorder local variables defined in `opt`; fix #4746
For example, local variables in the following def: ```ruby def foo(a = (not_set = true), &block) ... end ``` should be `a, block, not_set`, but were `a, not_set, block`.
Showing
Please register or sign in to comment