Represents an object being passed to a method as a block, e.g.:
foo(&bar)
The body node is first evaluates to
get an object, then to_proc to convert it into a proc if necessary. The iter node is then evaluated to call a
method, passing the proc as a block parameter to the method.