class DeepCover::Node::ModuleName

Public Instance Methods

execution_count() click to toggle source
Calls superclass method DeepCover::Node#execution_count
# File lib/deep_cover/node/module.rb, line 15
def execution_count
  if scope
    scope.flow_completion_count
  else
    super
  end
end
flow_completion_count() click to toggle source
# File lib/deep_cover/node/module.rb, line 11
def flow_completion_count
  parent.execution_count
end