synvert-core 0.49.0 → 0.51.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +14 -0
- data/lib/synvert/core/node_ext.rb +2 -2
- data/lib/synvert/core/rewriter.rb +17 -4
- data/lib/synvert/core/rewriter/action/insert_action.rb +1 -3
- data/lib/synvert/core/rewriter/action/replace_action.rb +1 -3
- data/lib/synvert/core/rewriter/action/wrap_action.rb +37 -0
- data/lib/synvert/core/rewriter/instance.rb +9 -0
- data/lib/synvert/core/version.rb +1 -1
- data/spec/synvert/core/node_ext_spec.rb +11 -0
- data/spec/synvert/core/rewriter/action/wrap_action_spec.rb +31 -0
- data/spec/synvert/core/rewriter/instance_spec.rb +5 -0
- data/spec/synvert/core/rewriter/scope/{within_scope.rb → within_scope_spec.rb} +0 -0
- data/spec/synvert/core/rewriter_spec.rb +9 -0
- metadata +8 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e3a46917323dc90674ad343c09d06621ac8817a3700c4b4ff205dbfb96a4ad7f
|
4
|
+
data.tar.gz: 1a72f62df4f1711af2b17e2ac2c556ac57bb5cf984cfc9f00d74ce4c7d540442
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8a150ae7cd1eef26c911c29a20911d370ec227405671218c2a4fee51b05ab5cc963002b719c2380c621fa603cd9082500eed91ace57fea6294e16a026e70193b
|
7
|
+
data.tar.gz: 78b9d45a11f131d20790a84d40c4547582d043fc779b77d398660ca35cc0eb415c4b55d8aba3e8b1d949cc864e7c71fe7ad5565af7e47ec4e5a5079b5cd095fc
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,19 @@
|
|
1
1
|
# CHANGELOG
|
2
2
|
|
3
|
+
## 0.51.1 (2021-08-19)
|
4
|
+
|
5
|
+
* Require `fileutils`
|
6
|
+
|
7
|
+
## 0.51.0 (2021-08-12)
|
8
|
+
|
9
|
+
* Add `wrap` action
|
10
|
+
* Add new dsl `redo_until_no_change`
|
11
|
+
|
12
|
+
## 0.50.0 (2021-08-11)
|
13
|
+
|
14
|
+
* Support `:module` in `body`
|
15
|
+
* Fix symbol match
|
16
|
+
|
3
17
|
## 0.49.0 (2021-08-04)
|
4
18
|
|
5
19
|
* Support :erange in to_value
|
@@ -110,7 +110,7 @@ module Parser::AST
|
|
110
110
|
case type
|
111
111
|
when :begin
|
112
112
|
children
|
113
|
-
when :def, :block, :class
|
113
|
+
when :def, :block, :class, :module
|
114
114
|
return [] if children[2].nil?
|
115
115
|
|
116
116
|
:begin == children[2].type ? children[2].body : children[2..-1]
|
@@ -550,7 +550,7 @@ module Parser::AST
|
|
550
550
|
case expected
|
551
551
|
when Symbol
|
552
552
|
if actual.is_a?(Parser::AST::Node)
|
553
|
-
actual.to_source == ":#{expected}"
|
553
|
+
actual.to_source == ":#{expected}" || actual.to_source == expected.to_s
|
554
554
|
else
|
555
555
|
actual.to_sym == expected
|
556
556
|
end
|
@@ -1,5 +1,7 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
+
require 'fileutils'
|
4
|
+
|
3
5
|
module Synvert::Core
|
4
6
|
# Rewriter is the top level namespace in a snippet.
|
5
7
|
#
|
@@ -18,14 +20,15 @@ module Synvert::Core
|
|
18
20
|
class Rewriter
|
19
21
|
autoload :Action, 'synvert/core/rewriter/action'
|
20
22
|
autoload :AppendAction, 'synvert/core/rewriter/action/append_action'
|
21
|
-
autoload :
|
23
|
+
autoload :DeleteAction, 'synvert/core/rewriter/action/delete_action'
|
22
24
|
autoload :InsertAction, 'synvert/core/rewriter/action/insert_action'
|
23
25
|
autoload :InsertAfterAction, 'synvert/core/rewriter/action/insert_after_action'
|
24
|
-
autoload :
|
26
|
+
autoload :RemoveAction, 'synvert/core/rewriter/action/remove_action'
|
27
|
+
autoload :PrependAction, 'synvert/core/rewriter/action/prepend_action'
|
25
28
|
autoload :ReplaceAction, 'synvert/core/rewriter/action/replace_action'
|
26
29
|
autoload :ReplaceErbStmtWithExprAction, 'synvert/core/rewriter/action/replace_erb_stmt_with_expr_action'
|
27
|
-
autoload :
|
28
|
-
autoload :
|
30
|
+
autoload :ReplaceWithAction, 'synvert/core/rewriter/action/replace_with_action'
|
31
|
+
autoload :WrapAction, 'synvert/core/rewriter/action/wrap_action'
|
29
32
|
|
30
33
|
autoload :Warning, 'synvert/core/rewriter/warning'
|
31
34
|
|
@@ -175,13 +178,18 @@ module Synvert::Core
|
|
175
178
|
@sub_snippets = []
|
176
179
|
@warnings = []
|
177
180
|
@affected_files = Set.new
|
181
|
+
@redo_until_no_change = false
|
178
182
|
self.class.register(@group, @name, self)
|
179
183
|
end
|
180
184
|
|
181
185
|
# Process the rewriter.
|
182
186
|
# It will call the block.
|
183
187
|
def process
|
188
|
+
@affected_files = Set.new
|
184
189
|
instance_eval(&@block)
|
190
|
+
if !@affected_files.empty? && @redo_until_no_change
|
191
|
+
process
|
192
|
+
end
|
185
193
|
end
|
186
194
|
|
187
195
|
# Process rewriter with sandbox mode.
|
@@ -314,5 +322,10 @@ module Synvert::Core
|
|
314
322
|
@todo
|
315
323
|
end
|
316
324
|
end
|
325
|
+
|
326
|
+
# Rerun the snippet until no change.
|
327
|
+
def redo_until_no_change
|
328
|
+
@redo_until_no_change = true
|
329
|
+
end
|
317
330
|
end
|
318
331
|
end
|
@@ -4,10 +4,8 @@ module Synvert::Core
|
|
4
4
|
# AddAction to add code to the node.
|
5
5
|
class Rewriter::InsertAction < Rewriter::Action
|
6
6
|
def initialize(instance, code, at:)
|
7
|
-
|
8
|
-
@code = code
|
7
|
+
super(instance, code)
|
9
8
|
@at = at
|
10
|
-
@node = @instance.current_node
|
11
9
|
end
|
12
10
|
|
13
11
|
# Begin position to insert code.
|
@@ -4,10 +4,8 @@ module Synvert::Core
|
|
4
4
|
# ReplaceAction to replace child node with code.
|
5
5
|
class Rewriter::ReplaceAction < Rewriter::Action
|
6
6
|
def initialize(instance, *selectors, with:)
|
7
|
-
|
7
|
+
super(instance, with)
|
8
8
|
@selectors = selectors
|
9
|
-
@code = with
|
10
|
-
@node = @instance.current_node
|
11
9
|
end
|
12
10
|
|
13
11
|
# Begin position of code to replace.
|
@@ -0,0 +1,37 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Synvert::Core
|
4
|
+
# WrapAction to warp node within a block, class or module.
|
5
|
+
#
|
6
|
+
# Note: if WrapAction is conflicted with another action (begin_pos and end_pos are overlapped),
|
7
|
+
# we have to put those 2 actions into 2 within_file scopes.
|
8
|
+
class Rewriter::WrapAction < Rewriter::Action
|
9
|
+
def initialize(instance, with:, indent: nil)
|
10
|
+
super(instance, with)
|
11
|
+
@indent = indent || @node.indent
|
12
|
+
end
|
13
|
+
|
14
|
+
# Begin position of code to wrap.
|
15
|
+
#
|
16
|
+
# @return [Integer] begin position.
|
17
|
+
def begin_pos
|
18
|
+
@node.loc.expression.begin_pos
|
19
|
+
end
|
20
|
+
|
21
|
+
# End position of code to wrap.
|
22
|
+
#
|
23
|
+
# @return [Integer] end position.
|
24
|
+
def end_pos
|
25
|
+
@node.loc.expression.end_pos
|
26
|
+
end
|
27
|
+
|
28
|
+
# The rewritten source code.
|
29
|
+
#
|
30
|
+
# @return [String] rewritten code.
|
31
|
+
def rewritten_code
|
32
|
+
"#{@code}\n#{' ' * @indent}" +
|
33
|
+
@node.to_source.split("\n").map { |line| " #{line}" }.join("\n") +
|
34
|
+
"\n#{' ' * @indent}end"
|
35
|
+
end
|
36
|
+
end
|
37
|
+
end
|
@@ -279,6 +279,15 @@ module Synvert::Core
|
|
279
279
|
@actions << Rewriter::DeleteAction.new(self, *selectors)
|
280
280
|
end
|
281
281
|
|
282
|
+
# Parse wrap with dsl, it creates a [Synvert::Core::Rewriter::WrapAction] to
|
283
|
+
# wrap current node with code.
|
284
|
+
#
|
285
|
+
# @param with [String] code need to be wrapped with.
|
286
|
+
# @param indent [Integer] number of whitespaces.
|
287
|
+
def wrap(with:, indent: nil)
|
288
|
+
@actions << Rewriter::WrapAction.new(self, with: with, indent: indent)
|
289
|
+
end
|
290
|
+
|
282
291
|
# Parse warn dsl, it creates a [Synvert::Core::Rewriter::Warning] to save warning message.
|
283
292
|
#
|
284
293
|
# @param message [String] warning message.
|
data/lib/synvert/core/version.rb
CHANGED
@@ -151,6 +151,11 @@ describe Parser::AST::Node do
|
|
151
151
|
expect(node.body).to be_empty
|
152
152
|
end
|
153
153
|
|
154
|
+
it 'gets empty for module node' do
|
155
|
+
node = parse('module Admin; end')
|
156
|
+
expect(node.body).to be_empty
|
157
|
+
end
|
158
|
+
|
154
159
|
it 'gets one line for class node' do
|
155
160
|
node = parse('class User; attr_accessor :email; end')
|
156
161
|
expect(node.body).to eq [parse('attr_accessor :email')]
|
@@ -423,6 +428,12 @@ describe Parser::AST::Node do
|
|
423
428
|
expect(node).to be_match(type: 'send', receiver: 'params', message: '[]', arguments: [:user])
|
424
429
|
end
|
425
430
|
|
431
|
+
it 'matches pair key with symbol' do
|
432
|
+
source = '{ type: :model }'
|
433
|
+
node = parse(source).children[0]
|
434
|
+
expect(node).to be_match(type: 'pair', key: :type)
|
435
|
+
end
|
436
|
+
|
426
437
|
it 'matches assign number' do
|
427
438
|
source = 'at_least(0)'
|
428
439
|
node = parse(source)
|
@@ -0,0 +1,31 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require 'spec_helper'
|
4
|
+
|
5
|
+
module Synvert::Core
|
6
|
+
describe Rewriter::WrapAction do
|
7
|
+
subject {
|
8
|
+
source = "class Bar\nend"
|
9
|
+
node = Parser::CurrentRuby.parse(source)
|
10
|
+
instance = double(current_node: node)
|
11
|
+
Rewriter::WrapAction.new(instance, with: 'module Foo')
|
12
|
+
}
|
13
|
+
|
14
|
+
it 'gets begin_pos' do
|
15
|
+
expect(subject.begin_pos).to eq 0
|
16
|
+
end
|
17
|
+
|
18
|
+
it 'gets end_pos' do
|
19
|
+
expect(subject.end_pos).to eq "class Bar\nend".length
|
20
|
+
end
|
21
|
+
|
22
|
+
it 'gets rewritten_code' do
|
23
|
+
expect(subject.rewritten_code).to eq <<~EOS.strip
|
24
|
+
module Foo
|
25
|
+
class Bar
|
26
|
+
end
|
27
|
+
end
|
28
|
+
EOS
|
29
|
+
end
|
30
|
+
end
|
31
|
+
end
|
@@ -140,6 +140,11 @@ module Synvert::Core
|
|
140
140
|
instance.delete :dot, :message
|
141
141
|
end
|
142
142
|
|
143
|
+
it 'parses wrap with' do
|
144
|
+
expect(Rewriter::WrapAction).to receive(:new).with(instance, with: 'module Foo', indent: nil)
|
145
|
+
instance.wrap with: 'module Foo'
|
146
|
+
end
|
147
|
+
|
143
148
|
it 'parses warn' do
|
144
149
|
expect(Rewriter::Warning).to receive(:new).with(instance, 'foobar')
|
145
150
|
instance.warn 'foobar'
|
File without changes
|
@@ -214,6 +214,15 @@ module Synvert::Core
|
|
214
214
|
expect(rewriter.todo).to eq "this rewriter doesn't do blah blah blah"
|
215
215
|
end
|
216
216
|
|
217
|
+
it 'parses redo_until_no_change' do
|
218
|
+
rewriter =
|
219
|
+
Rewriter.new 'group', 'name' do
|
220
|
+
redo_until_no_change
|
221
|
+
end
|
222
|
+
rewriter.process
|
223
|
+
expect(rewriter.instance_variable_get('@redo_until_no_change')).to be_truthy
|
224
|
+
end
|
225
|
+
|
217
226
|
describe 'class methods' do
|
218
227
|
before :each do
|
219
228
|
Rewriter.clear
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: synvert-core
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.51.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Richard Huang
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2021-08-
|
11
|
+
date: 2021-08-19 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: activesupport
|
@@ -155,6 +155,7 @@ files:
|
|
155
155
|
- lib/synvert/core/rewriter/action/replace_action.rb
|
156
156
|
- lib/synvert/core/rewriter/action/replace_erb_stmt_with_expr_action.rb
|
157
157
|
- lib/synvert/core/rewriter/action/replace_with_action.rb
|
158
|
+
- lib/synvert/core/rewriter/action/wrap_action.rb
|
158
159
|
- lib/synvert/core/rewriter/any_value.rb
|
159
160
|
- lib/synvert/core/rewriter/condition.rb
|
160
161
|
- lib/synvert/core/rewriter/condition/if_exist_condition.rb
|
@@ -182,6 +183,7 @@ files:
|
|
182
183
|
- spec/synvert/core/rewriter/action/replace_action_spec.rb
|
183
184
|
- spec/synvert/core/rewriter/action/replace_erb_stmt_with_expr_action_spec.rb
|
184
185
|
- spec/synvert/core/rewriter/action/replace_with_action_spec.rb
|
186
|
+
- spec/synvert/core/rewriter/action/wrap_action_spec.rb
|
185
187
|
- spec/synvert/core/rewriter/action_spec.rb
|
186
188
|
- spec/synvert/core/rewriter/condition/if_exist_condition_spec.rb
|
187
189
|
- spec/synvert/core/rewriter/condition/if_only_exist_condition_spec.rb
|
@@ -192,7 +194,7 @@ files:
|
|
192
194
|
- spec/synvert/core/rewriter/instance_spec.rb
|
193
195
|
- spec/synvert/core/rewriter/ruby_version_spec.rb
|
194
196
|
- spec/synvert/core/rewriter/scope/goto_scope_spec.rb
|
195
|
-
- spec/synvert/core/rewriter/scope/
|
197
|
+
- spec/synvert/core/rewriter/scope/within_scope_spec.rb
|
196
198
|
- spec/synvert/core/rewriter/scope_spec.rb
|
197
199
|
- spec/synvert/core/rewriter/warning_spec.rb
|
198
200
|
- spec/synvert/core/rewriter_spec.rb
|
@@ -216,7 +218,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
216
218
|
- !ruby/object:Gem::Version
|
217
219
|
version: '0'
|
218
220
|
requirements: []
|
219
|
-
rubygems_version: 3.
|
221
|
+
rubygems_version: 3.2.22
|
220
222
|
signing_key:
|
221
223
|
specification_version: 4
|
222
224
|
summary: convert ruby code to better syntax.
|
@@ -234,6 +236,7 @@ test_files:
|
|
234
236
|
- spec/synvert/core/rewriter/action/replace_action_spec.rb
|
235
237
|
- spec/synvert/core/rewriter/action/replace_erb_stmt_with_expr_action_spec.rb
|
236
238
|
- spec/synvert/core/rewriter/action/replace_with_action_spec.rb
|
239
|
+
- spec/synvert/core/rewriter/action/wrap_action_spec.rb
|
237
240
|
- spec/synvert/core/rewriter/action_spec.rb
|
238
241
|
- spec/synvert/core/rewriter/condition/if_exist_condition_spec.rb
|
239
242
|
- spec/synvert/core/rewriter/condition/if_only_exist_condition_spec.rb
|
@@ -244,7 +247,7 @@ test_files:
|
|
244
247
|
- spec/synvert/core/rewriter/instance_spec.rb
|
245
248
|
- spec/synvert/core/rewriter/ruby_version_spec.rb
|
246
249
|
- spec/synvert/core/rewriter/scope/goto_scope_spec.rb
|
247
|
-
- spec/synvert/core/rewriter/scope/
|
250
|
+
- spec/synvert/core/rewriter/scope/within_scope_spec.rb
|
248
251
|
- spec/synvert/core/rewriter/scope_spec.rb
|
249
252
|
- spec/synvert/core/rewriter/warning_spec.rb
|
250
253
|
- spec/synvert/core/rewriter_spec.rb
|