feat_list_noop Subroutine

private subroutine feat_list_noop(self, files, roots)

No-op callback for watch list rebuild completion.

Type Bound

watch_feature_t

Arguments

Type IntentOptional Attributes Name
class(watch_feature_t), intent(inout) :: self
type(string_t), intent(inout), allocatable :: files(:)
type(root_info_t), intent(inout), allocatable :: roots(:)

Called by

proc~~feat_list_noop~~CalledByGraph proc~feat_list_noop watch_feature_t%feat_list_noop proc~on_watch_list_built_all feature_manager_t%on_watch_list_built_all proc~on_watch_list_built_all->proc~feat_list_noop proc~rebuild_watch_list rebuild_watch_list proc~rebuild_watch_list->proc~on_watch_list_built_all proc~handle_manifest_change handle_manifest_change proc~handle_manifest_change->proc~rebuild_watch_list proc~watcher_init watcher_t%watcher_init proc~watcher_init->proc~rebuild_watch_list proc~watcher_run watcher_t%watcher_run proc~watcher_run->proc~rebuild_watch_list proc~watcher_run->proc~handle_manifest_change

Source Code

   subroutine feat_list_noop(self, files, roots)
      class(watch_feature_t), intent(inout) :: self
      type(string_t), allocatable, intent(inout) :: files(:)
      type(root_info_t), allocatable, intent(inout) :: roots(:)
      if (.false.) then
         if (allocated(files)) continue
         if (allocated(roots)) continue
      end if
   end subroutine feat_list_noop