Class: NodeMutation::GroupAction

Inherits:
Action
  • Object
show all
Defined in:
lib/node_mutation/action/group_action.rb

Overview

GroupAction is compose of multiple actions.

Constant Summary collapse

DEFAULT_START =
2**30

Instance Attribute Summary

Attributes inherited from Action

#actions, #end, #start, #type

Instance Method Summary collapse

Methods inherited from Action

#process, #to_struct

Constructor Details

#initializeGroupAction

Initialize a GroupAction.



8
9
10
11
# File 'lib/node_mutation/action/group_action.rb', line 8

def initialize
  @actions = []
  @type = :group
end

Instance Method Details

#new_codeObject



13
14
15
# File 'lib/node_mutation/action/group_action.rb', line 13

def new_code
  nil
end