Clear local (but non-argument) variables in OP_ENTER.
Otherwise, the following script prints an uninitialized value. def f(*a) if false b = 15 end p b end f(1,2,3)
Showing
Please register or sign in to comment
Otherwise, the following script prints an uninitialized value. def f(*a) if false b = 15 end p b end f(1,2,3)