# File lib/meta_programming/object.rb, line 29
      def method_access_level(method_name)
        case
        when public_method_defined?(method_name.to_sym) then :public
        when private_method_defined?(method_name.to_sym) then :private
        when protected_method_defined?(method_name.to_sym) then :protected
        else nil
        end
      end