# File lib_wpm/wpm.rb, line 1733
    def follow
      @another_page = parent_page.new_page(@properties.page)
      @another_page.parent_component = self
      @another_page.context_hook{ |context|
        @properties.setup_import_params(context)
      }
      @another_page.compile
      @another_page.setup
      @another_page.run
      @another_page.follow

      # traversing child components.
      super

      nil
    end