node_mutation 1.21.1 → 1.21.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: e659aa61170c013d38f7ae7fb18d7ce236b588cdd573d62af6a3eab683216a9f
4
- data.tar.gz: 9fe3a31666deda95fef8cfd668e09b880d484e6763483ec573b3e5869e8b593b
3
+ metadata.gz: e1f63b9205f77a333104b27187a81f8643d25771c440308eaeebe61133a18128
4
+ data.tar.gz: 48002aeb8687c03ee62b0cd41f3ac76793873c0039caa9f73d6203ad6aab645d
5
5
  SHA512:
6
- metadata.gz: a1f3b204d8cb0e74e7d9afc52893e7b2930ac51104ae61975406d93de2c4e617fef2afd12e57e73f15efd6d9ad11a19a57c2adcad14893b99f778dd0ebbde0d5
7
- data.tar.gz: a193a00b15323f8edcebd30dbd225c0e82a5a8831e4d3ae54a16aa211c0ba7e694283aea25353e081cb94e7db3a707c856de73837f6da04c1fa4700f522911e1
6
+ metadata.gz: 249ff1d6f50cb3395d3d8307bbfeedaaa642c9eec532b130fecdb07653bb608bf697ebfa0b4e9c0f6209a323e85c1bc7207aa8141e80f2a81dd258e5e22cbef7
7
+ data.tar.gz: cbcedfcfa1a60fc2020301d66bd3f56b055d7a150a7db14a562fa927b651abf4ab0e575ab66473ebf150950beb5856f17c0a0264ebd5eeebfc0c744faa6934ca
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # NodeMutation
2
2
 
3
+ ## 1.12.2 (2023-10-02)
4
+
5
+ * Result saves group actions properly
6
+
3
7
  ## 1.21.1 (2023-10-01)
4
8
 
5
9
  * Update `parser_node_ext` to 1.2.1
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- node_mutation (1.21.1)
4
+ node_mutation (1.21.2)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
@@ -41,6 +41,11 @@ class NodeMutation::Action
41
41
  end
42
42
  end
43
43
 
44
+ def to_struct
45
+ to_struct_actions = @actions ? @actions.map(&:to_struct) : nil
46
+ NodeMutation::Struct::Action.new(@type, @start, @end, new_code, to_struct_actions)
47
+ end
48
+
44
49
  protected
45
50
 
46
51
  # Calculate the begin the end positions.
@@ -19,10 +19,7 @@ class NodeMutation::Result
19
19
  end
20
20
 
21
21
  def actions=(actions)
22
- @actions =
23
- actions.map { |action|
24
- NodeMutation::Struct::Action.new(action.type, action.start, action.end, action.new_code, action.actions)
25
- }
22
+ @actions = actions.map(&:to_struct)
26
23
  end
27
24
 
28
25
  def to_json(*args)
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  class NodeMutation
4
- VERSION = "1.21.1"
4
+ VERSION = "1.21.2"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: node_mutation
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.21.1
4
+ version: 1.21.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Richard Huang