}
// Now, receive the block arg
// -- for methods, we always receive it (implicitly, if the block arg is not explicit)
// -- for closures, only if it is explicitly present
BlockArgNode blockArg = argsNode.getBlock();
if ((s instanceof IRMethod) || (blockArg != null)) receiveClosureArg(blockArg, s);
}