lib/node_mutation/struct.rb in node_mutation-1.21.0 vs lib/node_mutation/struct.rb in node_mutation-1.21.1

- old
+ new

@@ -1,7 +1,7 @@ # frozen_string_literal: true class NodeMutation::Struct - Action = Struct.new(:type, :start, :end, :new_code) + Action = Struct.new(:type, :start, :end, :new_code, :actions) Location = Struct.new(:line, :column) Range = Struct.new(:start, :end) end