Sha256: 09da04c0ddf40c7dceab48704bc4ca47bde5db44ddf26f24b9c7746730b04fae
Contents?: true
Size: 407 Bytes
Versions: 34
Compression:
Stored size: 407 Bytes
Contents
# frozen_string_literal: true module DeepCover module Node::Mixin # By default, nodes are considered executed if they are entered. # Some are considered executed only if their arguments complete. module ExecutedAfterChildren def execution_count last = children_nodes_in_flow_order.last return last.flow_completion_count if last super end end end end
Version data entries
34 entries across 34 versions & 2 rubygems