feat_before_noop Subroutine

private subroutine feat_before_noop(self, cmd)

No-op callback invoked just before executing the command.

Type Bound

watch_feature_t

Arguments

Type IntentOptional Attributes Name
class(watch_feature_t), intent(inout) :: self
character(len=:), intent(inout), allocatable :: cmd

Called by

proc~~feat_before_noop~~CalledByGraph proc~feat_before_noop watch_feature_t%feat_before_noop proc~on_before_run_all feature_manager_t%on_before_run_all proc~on_before_run_all->proc~feat_before_noop proc~run_once run_once proc~run_once->proc~on_before_run_all proc~watcher_run watcher_t%watcher_run proc~watcher_run->proc~on_before_run_all proc~watcher_init watcher_t%watcher_init proc~watcher_init->proc~run_once

Source Code

   subroutine feat_before_noop(self, cmd)
      class(watch_feature_t), intent(inout) :: self
      character(len=:), allocatable, intent(inout) :: cmd
      if (.false.) then
         if (allocated(cmd)) continue
      end if
   end subroutine feat_before_noop