parser 3.2.2.1 → 3.2.2.4

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: 8675f26d1fb8a457da79bb3f675a57647eefdefec8bf05d75bf97677e20860b0
4
- data.tar.gz: fe0759d1f51da6d85b89b5cc9d1fb34a4493f2c58e71cef9598753b9643b2a0a
3
+ metadata.gz: 8565383a05692fe05c5f0962a0cb6c4594ad1eaab98f8e1c8b1053ddfa665858
4
+ data.tar.gz: 280636e65eab161acc6369cdf992faa4f81a6496ebbbad794a96ee60ea3e4884
5
5
  SHA512:
6
- metadata.gz: 2271cfa20f5c8bd349e8465f0b5f4f667309c410ec7f622ec330e28adf4b896b560e0ce2f744bc267b6a7e4be687dfe351599660b200487de5ef9a7f2317121c
7
- data.tar.gz: 86e4b5e6368f0857ebeed00fafd2fb9ff274288602458aff86eac29324fa743c5acf4d3d5e45e0ea767b2501ec315888ef37b154d8c75069826b02631320f31d
6
+ metadata.gz: 8721d3c59c29a9bcb9562b6f0bad1ca119f854873fb3b6f5e550553a6d2fa471afb2d3e1c6c5b1323d5121b36f4070ed0a3bca24866b3dede1682658bbce934f
7
+ data.tar.gz: e312e821428e6c15ec871971aabee38cd7c238adfc855ff1a4b70edb31f529e359162c1961141d2ce3fe0d5f6aee3fce009c6a479aaa3909920993af58d3c3f2
@@ -1690,24 +1690,34 @@ module Parser
1690
1690
  cond
1691
1691
  end
1692
1692
 
1693
- when :and, :or, :irange, :erange
1693
+ when :and, :or
1694
1694
  lhs, rhs = *cond
1695
1695
 
1696
- type = case cond.type
1697
- when :irange then :iflipflop
1698
- when :erange then :eflipflop
1699
- end
1700
-
1701
- if [:and, :or].include?(cond.type) &&
1702
- @parser.version == 18
1696
+ if @parser.version == 18
1703
1697
  cond
1704
1698
  else
1705
- cond.updated(type, [
1699
+ cond.updated(cond.type, [
1706
1700
  check_condition(lhs),
1707
1701
  check_condition(rhs)
1708
1702
  ])
1709
1703
  end
1710
1704
 
1705
+ when :irange, :erange
1706
+ lhs, rhs = *cond
1707
+
1708
+ type = case cond.type
1709
+ when :irange then :iflipflop
1710
+ when :erange then :eflipflop
1711
+ end
1712
+
1713
+ lhs_condition = check_condition(lhs) unless lhs.nil?
1714
+ rhs_condition = check_condition(rhs) unless rhs.nil?
1715
+
1716
+ return cond.updated(type, [
1717
+ lhs_condition,
1718
+ rhs_condition
1719
+ ])
1720
+
1711
1721
  when :regexp
1712
1722
  n(:match_current_line, [ cond ], expr_map(cond.loc.expression))
1713
1723
 
@@ -1,7 +1,7 @@
1
1
  # -*- encoding:utf-8; warn-indent:false; frozen_string_literal: true -*-
2
2
  #
3
3
  # DO NOT MODIFY!!!!
4
- # This file is automatically generated by Racc 1.6.2
4
+ # This file is automatically generated by Racc 1.7.1
5
5
  # from Racc grammar file "".
6
6
  #
7
7
 
@@ -6256,6 +6256,7 @@ Racc_arg = [
6256
6256
  racc_shift_n,
6257
6257
  racc_reduce_n,
6258
6258
  racc_use_result_var ]
6259
+ Ractor.make_shareable(Racc_arg) if defined?(Ractor)
6259
6260
 
6260
6261
  Racc_token_to_s_table = [
6261
6262
  "$end",
@@ -6553,6 +6554,7 @@ Racc_token_to_s_table = [
6553
6554
  "restarg_mark",
6554
6555
  "blkarg_mark",
6555
6556
  "assoc" ]
6557
+ Ractor.make_shareable(Racc_token_to_s_table) if defined?(Ractor)
6556
6558
 
6557
6559
  Racc_debug_parser = false
6558
6560
 
data/lib/parser/ruby18.rb CHANGED
@@ -1,7 +1,7 @@
1
1
  # -*- encoding:utf-8; warn-indent:false; frozen_string_literal: true -*-
2
2
  #
3
3
  # DO NOT MODIFY!!!!
4
- # This file is automatically generated by Racc 1.6.2
4
+ # This file is automatically generated by Racc 1.7.1
5
5
  # from Racc grammar file "".
6
6
  #
7
7
 
@@ -6272,6 +6272,7 @@ Racc_arg = [
6272
6272
  racc_shift_n,
6273
6273
  racc_reduce_n,
6274
6274
  racc_use_result_var ]
6275
+ Ractor.make_shareable(Racc_arg) if defined?(Ractor)
6275
6276
 
6276
6277
  Racc_token_to_s_table = [
6277
6278
  "$end",
@@ -6539,6 +6540,7 @@ Racc_token_to_s_table = [
6539
6540
  "restarg_mark",
6540
6541
  "blkarg_mark",
6541
6542
  "assoc" ]
6543
+ Ractor.make_shareable(Racc_token_to_s_table) if defined?(Ractor)
6542
6544
 
6543
6545
  Racc_debug_parser = false
6544
6546
 
data/lib/parser/ruby19.rb CHANGED
@@ -1,7 +1,7 @@
1
1
  # -*- encoding:utf-8; warn-indent:false; frozen_string_literal: true -*-
2
2
  #
3
3
  # DO NOT MODIFY!!!!
4
- # This file is automatically generated by Racc 1.6.2
4
+ # This file is automatically generated by Racc 1.7.1
5
5
  # from Racc grammar file "".
6
6
  #
7
7
 
@@ -6215,6 +6215,7 @@ Racc_arg = [
6215
6215
  racc_shift_n,
6216
6216
  racc_reduce_n,
6217
6217
  racc_use_result_var ]
6218
+ Ractor.make_shareable(Racc_arg) if defined?(Ractor)
6218
6219
 
6219
6220
  Racc_token_to_s_table = [
6220
6221
  "$end",
@@ -6511,6 +6512,7 @@ Racc_token_to_s_table = [
6511
6512
  "restarg_mark",
6512
6513
  "blkarg_mark",
6513
6514
  "assoc" ]
6515
+ Ractor.make_shareable(Racc_token_to_s_table) if defined?(Ractor)
6514
6516
 
6515
6517
  Racc_debug_parser = false
6516
6518
 
data/lib/parser/ruby20.rb CHANGED
@@ -1,7 +1,7 @@
1
1
  # -*- encoding:utf-8; warn-indent:false; frozen_string_literal: true -*-
2
2
  #
3
3
  # DO NOT MODIFY!!!!
4
- # This file is automatically generated by Racc 1.6.2
4
+ # This file is automatically generated by Racc 1.7.1
5
5
  # from Racc grammar file "".
6
6
  #
7
7
 
@@ -6630,6 +6630,7 @@ Racc_arg = [
6630
6630
  racc_shift_n,
6631
6631
  racc_reduce_n,
6632
6632
  racc_use_result_var ]
6633
+ Ractor.make_shareable(Racc_arg) if defined?(Ractor)
6633
6634
 
6634
6635
  Racc_token_to_s_table = [
6635
6636
  "$end",
@@ -6949,6 +6950,7 @@ Racc_token_to_s_table = [
6949
6950
  "restarg_mark",
6950
6951
  "blkarg_mark",
6951
6952
  "assoc" ]
6953
+ Ractor.make_shareable(Racc_token_to_s_table) if defined?(Ractor)
6952
6954
 
6953
6955
  Racc_debug_parser = false
6954
6956
 
data/lib/parser/ruby21.rb CHANGED
@@ -1,7 +1,7 @@
1
1
  # -*- encoding:utf-8; warn-indent:false; frozen_string_literal: true -*-
2
2
  #
3
3
  # DO NOT MODIFY!!!!
4
- # This file is automatically generated by Racc 1.6.2
4
+ # This file is automatically generated by Racc 1.7.1
5
5
  # from Racc grammar file "".
6
6
  #
7
7
 
@@ -6583,6 +6583,7 @@ Racc_arg = [
6583
6583
  racc_shift_n,
6584
6584
  racc_reduce_n,
6585
6585
  racc_use_result_var ]
6586
+ Ractor.make_shareable(Racc_arg) if defined?(Ractor)
6586
6587
 
6587
6588
  Racc_token_to_s_table = [
6588
6589
  "$end",
@@ -6909,6 +6910,7 @@ Racc_token_to_s_table = [
6909
6910
  "restarg_mark",
6910
6911
  "blkarg_mark",
6911
6912
  "assoc" ]
6913
+ Ractor.make_shareable(Racc_token_to_s_table) if defined?(Ractor)
6912
6914
 
6913
6915
  Racc_debug_parser = false
6914
6916
 
data/lib/parser/ruby22.rb CHANGED
@@ -1,7 +1,7 @@
1
1
  # -*- encoding:utf-8; warn-indent:false; frozen_string_literal: true -*-
2
2
  #
3
3
  # DO NOT MODIFY!!!!
4
- # This file is automatically generated by Racc 1.6.2
4
+ # This file is automatically generated by Racc 1.7.1
5
5
  # from Racc grammar file "".
6
6
  #
7
7
 
@@ -6668,6 +6668,7 @@ Racc_arg = [
6668
6668
  racc_shift_n,
6669
6669
  racc_reduce_n,
6670
6670
  racc_use_result_var ]
6671
+ Ractor.make_shareable(Racc_arg) if defined?(Ractor)
6671
6672
 
6672
6673
  Racc_token_to_s_table = [
6673
6674
  "$end",
@@ -6996,6 +6997,7 @@ Racc_token_to_s_table = [
6996
6997
  "restarg_mark",
6997
6998
  "blkarg_mark",
6998
6999
  "assoc" ]
7000
+ Ractor.make_shareable(Racc_token_to_s_table) if defined?(Ractor)
6999
7001
 
7000
7002
  Racc_debug_parser = false
7001
7003
 
data/lib/parser/ruby23.rb CHANGED
@@ -1,7 +1,7 @@
1
1
  # -*- encoding:utf-8; warn-indent:false; frozen_string_literal: true -*-
2
2
  #
3
3
  # DO NOT MODIFY!!!!
4
- # This file is automatically generated by Racc 1.6.2
4
+ # This file is automatically generated by Racc 1.7.1
5
5
  # from Racc grammar file "".
6
6
  #
7
7
 
@@ -6678,6 +6678,7 @@ Racc_arg = [
6678
6678
  racc_shift_n,
6679
6679
  racc_reduce_n,
6680
6680
  racc_use_result_var ]
6681
+ Ractor.make_shareable(Racc_arg) if defined?(Ractor)
6681
6682
 
6682
6683
  Racc_token_to_s_table = [
6683
6684
  "$end",
@@ -7008,6 +7009,7 @@ Racc_token_to_s_table = [
7008
7009
  "restarg_mark",
7009
7010
  "blkarg_mark",
7010
7011
  "assoc" ]
7012
+ Ractor.make_shareable(Racc_token_to_s_table) if defined?(Ractor)
7011
7013
 
7012
7014
  Racc_debug_parser = false
7013
7015
 
data/lib/parser/ruby24.rb CHANGED
@@ -1,7 +1,7 @@
1
1
  # -*- encoding:utf-8; warn-indent:false; frozen_string_literal: true -*-
2
2
  #
3
3
  # DO NOT MODIFY!!!!
4
- # This file is automatically generated by Racc 1.6.2
4
+ # This file is automatically generated by Racc 1.7.1
5
5
  # from Racc grammar file "".
6
6
  #
7
7
 
@@ -6758,6 +6758,7 @@ Racc_arg = [
6758
6758
  racc_shift_n,
6759
6759
  racc_reduce_n,
6760
6760
  racc_use_result_var ]
6761
+ Ractor.make_shareable(Racc_arg) if defined?(Ractor)
6761
6762
 
6762
6763
  Racc_token_to_s_table = [
6763
6764
  "$end",
@@ -7094,6 +7095,7 @@ Racc_token_to_s_table = [
7094
7095
  "restarg_mark",
7095
7096
  "blkarg_mark",
7096
7097
  "assoc" ]
7098
+ Ractor.make_shareable(Racc_token_to_s_table) if defined?(Ractor)
7097
7099
 
7098
7100
  Racc_debug_parser = false
7099
7101
 
data/lib/parser/ruby25.rb CHANGED
@@ -1,7 +1,7 @@
1
1
  # -*- encoding:utf-8; warn-indent:false; frozen_string_literal: true -*-
2
2
  #
3
3
  # DO NOT MODIFY!!!!
4
- # This file is automatically generated by Racc 1.6.2
4
+ # This file is automatically generated by Racc 1.7.1
5
5
  # from Racc grammar file "".
6
6
  #
7
7
 
@@ -6693,6 +6693,7 @@ Racc_arg = [
6693
6693
  racc_shift_n,
6694
6694
  racc_reduce_n,
6695
6695
  racc_use_result_var ]
6696
+ Ractor.make_shareable(Racc_arg) if defined?(Ractor)
6696
6697
 
6697
6698
  Racc_token_to_s_table = [
6698
6699
  "$end",
@@ -7029,6 +7030,7 @@ Racc_token_to_s_table = [
7029
7030
  "restarg_mark",
7030
7031
  "blkarg_mark",
7031
7032
  "assoc" ]
7033
+ Ractor.make_shareable(Racc_token_to_s_table) if defined?(Ractor)
7032
7034
 
7033
7035
  Racc_debug_parser = false
7034
7036
 
data/lib/parser/ruby26.rb CHANGED
@@ -1,7 +1,7 @@
1
1
  # -*- encoding:utf-8; warn-indent:false; frozen_string_literal: true -*-
2
2
  #
3
3
  # DO NOT MODIFY!!!!
4
- # This file is automatically generated by Racc 1.6.2
4
+ # This file is automatically generated by Racc 1.7.1
5
5
  # from Racc grammar file "".
6
6
  #
7
7
 
@@ -6652,6 +6652,7 @@ Racc_arg = [
6652
6652
  racc_shift_n,
6653
6653
  racc_reduce_n,
6654
6654
  racc_use_result_var ]
6655
+ Ractor.make_shareable(Racc_arg) if defined?(Ractor)
6655
6656
 
6656
6657
  Racc_token_to_s_table = [
6657
6658
  "$end",
@@ -6989,6 +6990,7 @@ Racc_token_to_s_table = [
6989
6990
  "restarg_mark",
6990
6991
  "blkarg_mark",
6991
6992
  "assoc" ]
6993
+ Ractor.make_shareable(Racc_token_to_s_table) if defined?(Ractor)
6992
6994
 
6993
6995
  Racc_debug_parser = false
6994
6996
 
data/lib/parser/ruby27.rb CHANGED
@@ -1,7 +1,7 @@
1
1
  # -*- encoding:utf-8; warn-indent:false; frozen_string_literal: true -*-
2
2
  #
3
3
  # DO NOT MODIFY!!!!
4
- # This file is automatically generated by Racc 1.6.2
4
+ # This file is automatically generated by Racc 1.7.1
5
5
  # from Racc grammar file "".
6
6
  #
7
7
 
@@ -7519,6 +7519,7 @@ Racc_arg = [
7519
7519
  racc_shift_n,
7520
7520
  racc_reduce_n,
7521
7521
  racc_use_result_var ]
7522
+ Ractor.make_shareable(Racc_arg) if defined?(Ractor)
7522
7523
 
7523
7524
  Racc_token_to_s_table = [
7524
7525
  "$end",
@@ -7896,6 +7897,7 @@ Racc_token_to_s_table = [
7896
7897
  "restarg_mark",
7897
7898
  "blkarg_mark",
7898
7899
  "assoc" ]
7900
+ Ractor.make_shareable(Racc_token_to_s_table) if defined?(Ractor)
7899
7901
 
7900
7902
  Racc_debug_parser = false
7901
7903
 
data/lib/parser/ruby30.rb CHANGED
@@ -1,7 +1,7 @@
1
1
  # -*- encoding:utf-8; warn-indent:false; frozen_string_literal: true -*-
2
2
  #
3
3
  # DO NOT MODIFY!!!!
4
- # This file is automatically generated by Racc 1.6.2
4
+ # This file is automatically generated by Racc 1.7.1
5
5
  # from Racc grammar file "".
6
6
  #
7
7
 
@@ -7727,6 +7727,7 @@ Racc_arg = [
7727
7727
  racc_shift_n,
7728
7728
  racc_reduce_n,
7729
7729
  racc_use_result_var ]
7730
+ Ractor.make_shareable(Racc_arg) if defined?(Ractor)
7730
7731
 
7731
7732
  Racc_token_to_s_table = [
7732
7733
  "$end",
@@ -8110,6 +8111,7 @@ Racc_token_to_s_table = [
8110
8111
  "restarg_mark",
8111
8112
  "blkarg_mark",
8112
8113
  "assoc" ]
8114
+ Ractor.make_shareable(Racc_token_to_s_table) if defined?(Ractor)
8113
8115
 
8114
8116
  Racc_debug_parser = false
8115
8117
 
data/lib/parser/ruby31.rb CHANGED
@@ -1,7 +1,7 @@
1
1
  # -*- encoding:utf-8; warn-indent:false; frozen_string_literal: true -*-
2
2
  #
3
3
  # DO NOT MODIFY!!!!
4
- # This file is automatically generated by Racc 1.6.2
4
+ # This file is automatically generated by Racc 1.7.1
5
5
  # from Racc grammar file "".
6
6
  #
7
7
 
@@ -8034,6 +8034,7 @@ Racc_arg = [
8034
8034
  racc_shift_n,
8035
8035
  racc_reduce_n,
8036
8036
  racc_use_result_var ]
8037
+ Ractor.make_shareable(Racc_arg) if defined?(Ractor)
8037
8038
 
8038
8039
  Racc_token_to_s_table = [
8039
8040
  "$end",
@@ -8423,6 +8424,7 @@ Racc_token_to_s_table = [
8423
8424
  "restarg_mark",
8424
8425
  "blkarg_mark",
8425
8426
  "assoc" ]
8427
+ Ractor.make_shareable(Racc_token_to_s_table) if defined?(Ractor)
8426
8428
 
8427
8429
  Racc_debug_parser = false
8428
8430
 
data/lib/parser/ruby32.rb CHANGED
@@ -1,7 +1,7 @@
1
1
  # -*- encoding:utf-8; warn-indent:false; frozen_string_literal: true -*-
2
2
  #
3
3
  # DO NOT MODIFY!!!!
4
- # This file is automatically generated by Racc 1.6.2
4
+ # This file is automatically generated by Racc 1.7.1
5
5
  # from Racc grammar file "".
6
6
  #
7
7
 
@@ -8020,6 +8020,7 @@ Racc_arg = [
8020
8020
  racc_shift_n,
8021
8021
  racc_reduce_n,
8022
8022
  racc_use_result_var ]
8023
+ Ractor.make_shareable(Racc_arg) if defined?(Ractor)
8023
8024
 
8024
8025
  Racc_token_to_s_table = [
8025
8026
  "$end",
@@ -8409,6 +8410,7 @@ Racc_token_to_s_table = [
8409
8410
  "restarg_mark",
8410
8411
  "blkarg_mark",
8411
8412
  "assoc" ]
8413
+ Ractor.make_shareable(Racc_token_to_s_table) if defined?(Ractor)
8412
8414
 
8413
8415
  Racc_debug_parser = false
8414
8416
 
data/lib/parser/ruby33.rb CHANGED
@@ -1,7 +1,7 @@
1
1
  # -*- encoding:utf-8; warn-indent:false; frozen_string_literal: true -*-
2
2
  #
3
3
  # DO NOT MODIFY!!!!
4
- # This file is automatically generated by Racc 1.6.2
4
+ # This file is automatically generated by Racc 1.7.1
5
5
  # from Racc grammar file "".
6
6
  #
7
7
 
@@ -8020,6 +8020,7 @@ Racc_arg = [
8020
8020
  racc_shift_n,
8021
8021
  racc_reduce_n,
8022
8022
  racc_use_result_var ]
8023
+ Ractor.make_shareable(Racc_arg) if defined?(Ractor)
8023
8024
 
8024
8025
  Racc_token_to_s_table = [
8025
8026
  "$end",
@@ -8409,6 +8410,7 @@ Racc_token_to_s_table = [
8409
8410
  "restarg_mark",
8410
8411
  "blkarg_mark",
8411
8412
  "assoc" ]
8413
+ Ractor.make_shareable(Racc_token_to_s_table) if defined?(Ractor)
8412
8414
 
8413
8415
  Racc_debug_parser = false
8414
8416
 
@@ -1,7 +1,7 @@
1
1
  # -*- encoding:utf-8; warn-indent:false; frozen_string_literal: true -*-
2
2
  #
3
3
  # DO NOT MODIFY!!!!
4
- # This file is automatically generated by Racc 1.6.2
4
+ # This file is automatically generated by Racc 1.7.1
5
5
  # from Racc grammar file "".
6
6
  #
7
7
 
@@ -6160,6 +6160,7 @@ Racc_arg = [
6160
6160
  racc_shift_n,
6161
6161
  racc_reduce_n,
6162
6162
  racc_use_result_var ]
6163
+ Ractor.make_shareable(Racc_arg) if defined?(Ractor)
6163
6164
 
6164
6165
  Racc_token_to_s_table = [
6165
6166
  "$end",
@@ -6456,6 +6457,7 @@ Racc_token_to_s_table = [
6456
6457
  "restarg_mark",
6457
6458
  "blkarg_mark",
6458
6459
  "assoc" ]
6460
+ Ractor.make_shareable(Racc_token_to_s_table) if defined?(Ractor)
6459
6461
 
6460
6462
  Racc_debug_parser = false
6461
6463
 
@@ -95,10 +95,11 @@ module Parser
95
95
  end
96
96
 
97
97
  ##
98
- # Same as {associate}, but compares by identity, thus producing an unambiguous
99
- # result even in presence of equal nodes.
98
+ # Same as {associate}, but uses `node.loc` instead of `node` as
99
+ # the hash key, thus producing an unambiguous result even in presence
100
+ # of equal nodes.
100
101
  #
101
- # @return [Hash<Parser::Source::Node, Array<Parser::Source::Comment>>]
102
+ # @return [Hash<Parser::Source::Map, Array<Parser::Source::Comment>>]
102
103
  #
103
104
  def associate_locations
104
105
  @map_using = :location
@@ -106,11 +107,10 @@ module Parser
106
107
  end
107
108
 
108
109
  ##
109
- # Same as {associate}, but uses `node.loc` instead of `node` as
110
- # the hash key, thus producing an unambiguous result even in presence
111
- # of equal nodes.
110
+ # Same as {associate}, but compares by identity, thus producing an unambiguous
111
+ # result even in presence of equal nodes.
112
112
  #
113
- # @return [Hash<Parser::Source::Map, Array<Parser::Source::Comment>>]
113
+ # @return [Hash<Parser::Source::Node, Array<Parser::Source::Comment>>]
114
114
  #
115
115
  def associate_by_identity
116
116
  @map_using = :identity
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Parser
4
- VERSION = '3.2.2.1'
4
+ VERSION = '3.2.2.4'
5
5
  end
data/parser.gemspec CHANGED
@@ -27,10 +27,10 @@ Gem::Specification.new do |spec|
27
27
  spec.required_ruby_version = '>= 2.0.0'
28
28
 
29
29
  spec.add_dependency 'ast', '~> 2.4.1'
30
+ spec.add_dependency 'racc'
30
31
 
31
32
  spec.add_development_dependency 'bundler', '>= 1.15', '< 3.0.0'
32
33
  spec.add_development_dependency 'rake', '~> 13.0.1'
33
- spec.add_development_dependency 'racc', '= 1.6.2'
34
34
  spec.add_development_dependency 'cliver', '~> 0.3.2'
35
35
 
36
36
  spec.add_development_dependency 'yard'
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: parser
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.2.2.1
4
+ version: 3.2.2.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - whitequark
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-04-24 00:00:00.000000000 Z
11
+ date: 2023-10-04 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: ast
@@ -24,6 +24,20 @@ dependencies:
24
24
  - - "~>"
25
25
  - !ruby/object:Gem::Version
26
26
  version: 2.4.1
27
+ - !ruby/object:Gem::Dependency
28
+ name: racc
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ">="
32
+ - !ruby/object:Gem::Version
33
+ version: '0'
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - ">="
39
+ - !ruby/object:Gem::Version
40
+ version: '0'
27
41
  - !ruby/object:Gem::Dependency
28
42
  name: bundler
29
43
  requirement: !ruby/object:Gem::Requirement
@@ -58,20 +72,6 @@ dependencies:
58
72
  - - "~>"
59
73
  - !ruby/object:Gem::Version
60
74
  version: 13.0.1
61
- - !ruby/object:Gem::Dependency
62
- name: racc
63
- requirement: !ruby/object:Gem::Requirement
64
- requirements:
65
- - - '='
66
- - !ruby/object:Gem::Version
67
- version: 1.6.2
68
- type: :development
69
- prerelease: false
70
- version_requirements: !ruby/object:Gem::Requirement
71
- requirements:
72
- - - '='
73
- - !ruby/object:Gem::Version
74
- version: 1.6.2
75
75
  - !ruby/object:Gem::Dependency
76
76
  name: cliver
77
77
  requirement: !ruby/object:Gem::Requirement
@@ -249,9 +249,9 @@ licenses:
249
249
  - MIT
250
250
  metadata:
251
251
  bug_tracker_uri: https://github.com/whitequark/parser/issues
252
- changelog_uri: https://github.com/whitequark/parser/blob/v3.2.2.1/CHANGELOG.md
253
- documentation_uri: https://www.rubydoc.info/gems/parser/3.2.2.1
254
- source_code_uri: https://github.com/whitequark/parser/tree/v3.2.2.1
252
+ changelog_uri: https://github.com/whitequark/parser/blob/v3.2.2.4/CHANGELOG.md
253
+ documentation_uri: https://www.rubydoc.info/gems/parser/3.2.2.4
254
+ source_code_uri: https://github.com/whitequark/parser/tree/v3.2.2.4
255
255
  post_install_message:
256
256
  rdoc_options: []
257
257
  require_paths: