module DeepCover::Node::Mixin::ExecutedAfterChildren

By default, nodes are considered executed if they are entered. Some are considered executed only if their arguments complete.

Public Instance Methods

execution_count() click to toggle source
Calls superclass method
# File lib/deep_cover/node/mixin/executed_after_children.rb, line 8
def execution_count
  last = children_nodes_in_flow_order.last
  return last.flow_completion_count if last
  super
end