# File lib/ice_nine/support/recursion_guard.rb, line 49
      def guard(object)
        return object if object.frozen?
        yield
      end