RubyModule cbase = context.getCurrentScope().getModule();
RubyModule klass = context.getFrameModule();
String name = node.getName();
Node bodyNode = node.getBodyNode();
Node argsNode = node.getArgsNode();
Visibility visibility = context.getFrameVisibility();
boolean moduleFunction = visibility == Visibility.MODULE_FUNCTION;
if (name == "initialize" || name == "initialize_copy" || moduleFunction) {
visibility = Visibility.PRIVATE;
}