lib/node_mutation/struct.rb in node_mutation-1.15.2 vs lib/node_mutation/struct.rb in node_mutation-1.15.3

- old
+ new

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