mutant 0.11.10 → 0.11.11
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/lib/mutant/ast/pattern/lexer.rb +171 -0
- data/lib/mutant/ast/pattern/parser.rb +194 -0
- data/lib/mutant/ast/pattern/source.rb +39 -0
- data/lib/mutant/ast/pattern/token.rb +15 -0
- data/lib/mutant/ast/pattern.rb +125 -0
- data/lib/mutant/ast/structure.rb +890 -0
- data/lib/mutant/mutator/node/regexp/capture_group.rb +3 -5
- data/lib/mutant/version.rb +1 -1
- data/lib/mutant/world.rb +1 -0
- data/lib/mutant.rb +7 -0
- metadata +8 -2
@@ -8,15 +8,13 @@ module Mutant
|
|
8
8
|
class CaptureGroup < Node
|
9
9
|
handle(:regexp_capture_group)
|
10
10
|
|
11
|
-
children :group
|
12
|
-
|
13
11
|
private
|
14
12
|
|
15
13
|
def dispatch
|
16
|
-
return
|
14
|
+
return if children.empty?
|
17
15
|
|
18
|
-
emit(s(:regexp_passive_group,
|
19
|
-
|
16
|
+
emit(s(:regexp_passive_group, *children))
|
17
|
+
children.each_index(&method(:mutate_child))
|
20
18
|
end
|
21
19
|
end # EndOfLineAnchor
|
22
20
|
end # Regexp
|
data/lib/mutant/version.rb
CHANGED
data/lib/mutant/world.rb
CHANGED
data/lib/mutant.rb
CHANGED
@@ -76,6 +76,12 @@ require 'mutant/ast/meta/const'
|
|
76
76
|
require 'mutant/ast/meta/symbol'
|
77
77
|
require 'mutant/ast/meta/optarg'
|
78
78
|
require 'mutant/ast/meta/resbody'
|
79
|
+
require 'mutant/ast/pattern'
|
80
|
+
require 'mutant/ast/pattern/lexer'
|
81
|
+
require 'mutant/ast/pattern/parser'
|
82
|
+
require 'mutant/ast/pattern/source'
|
83
|
+
require 'mutant/ast/pattern/token'
|
84
|
+
require 'mutant/ast/structure'
|
79
85
|
require 'mutant/parser'
|
80
86
|
require 'mutant/isolation'
|
81
87
|
require 'mutant/isolation/exception'
|
@@ -256,6 +262,7 @@ module Mutant
|
|
256
262
|
open3: Open3,
|
257
263
|
pathname: Pathname,
|
258
264
|
process: Process,
|
265
|
+
random: Random,
|
259
266
|
stderr: $stderr,
|
260
267
|
stdout: $stdout,
|
261
268
|
thread: Thread,
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: mutant
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.11.
|
4
|
+
version: 0.11.11
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Markus Schirp
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-
|
11
|
+
date: 2022-06-20 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: diff-lcs
|
@@ -179,6 +179,11 @@ files:
|
|
179
179
|
- lib/mutant/ast/named_children.rb
|
180
180
|
- lib/mutant/ast/node_predicates.rb
|
181
181
|
- lib/mutant/ast/nodes.rb
|
182
|
+
- lib/mutant/ast/pattern.rb
|
183
|
+
- lib/mutant/ast/pattern/lexer.rb
|
184
|
+
- lib/mutant/ast/pattern/parser.rb
|
185
|
+
- lib/mutant/ast/pattern/source.rb
|
186
|
+
- lib/mutant/ast/pattern/token.rb
|
182
187
|
- lib/mutant/ast/regexp.rb
|
183
188
|
- lib/mutant/ast/regexp/transformer.rb
|
184
189
|
- lib/mutant/ast/regexp/transformer/direct.rb
|
@@ -189,6 +194,7 @@ files:
|
|
189
194
|
- lib/mutant/ast/regexp/transformer/root.rb
|
190
195
|
- lib/mutant/ast/regexp/transformer/text.rb
|
191
196
|
- lib/mutant/ast/sexp.rb
|
197
|
+
- lib/mutant/ast/structure.rb
|
192
198
|
- lib/mutant/ast/types.rb
|
193
199
|
- lib/mutant/bootstrap.rb
|
194
200
|
- lib/mutant/cli.rb
|