ruby_parser 3.20.1 → 3.20.3

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 1a1091cb2c6708b4fc4565e0beee0249ecb71356c65df5aaca422151fc4f4208
4
- data.tar.gz: e84c6c57564b5d685991ca9889adcbbc9840fd6ad614ece42865cd6bfc8ff4bb
3
+ metadata.gz: 4c0c3e107b8953bdbaf64c24c32d5428696fa648398c4fdc896cba560547341b
4
+ data.tar.gz: b268454b6584eee700d5d90e37c7986e252a024b89422d47db69d5c0cfd7f917
5
5
  SHA512:
6
- metadata.gz: ecfb9fac2cf9c3ee2fb700ffbf1ae370442ce58fb8edc70563837a8eb87e354db670b62a30721bb5770dfda77ef1c000c3c3f6dfc5f2f4263a668b7770847544
7
- data.tar.gz: 04e714616f46cdb11cc22f84bf1b5a3aa4d64e8395b8f2336804ca3137b5c6ceeac3ef5d9388845f7f11b2d4823948f5ec3fa04c801d9c4b13e1e95b7184abea
6
+ metadata.gz: f466e027ad5467b7a799a44378756fb082cd86d59c7696815347af2be9360b21f2ff9f5f5e8687b7073cc9ab2432330808a07eaee57e8802783ffe6b6a16b602
7
+ data.tar.gz: 8eb1af21a6936f44bcc8ea42b8dae4773e1a86a8e4815c67a536e1d10363e5c95123d77c04402f156e8f9e7b786b21ff382d3134a650c6428f903552a61ec495
checksums.yaml.gz.sig CHANGED
Binary file
data/History.rdoc CHANGED
@@ -1,3 +1,21 @@
1
+ === 3.20.3 / 2023-07-11
2
+
3
+ * 2 minor enhancements:
4
+
5
+ * Added Parser#in_argdef and integrated into 3.x parsers.
6
+ * Improved tools/munge.rb to handler MRI 3.2 output
7
+
8
+ * 2 bug fixes:
9
+
10
+ * Fixed process_dots to properly deal with paren-less forward_args. (eric1234)
11
+ * Fixed tools/ripper.rb to properly print ripper sexp at the end
12
+
13
+ === 3.20.2 / 2023-06-06
14
+
15
+ * 1 bug fix:
16
+
17
+ * 3.2: fixed parsing of f(*) and f(**). (agrobbin)
18
+
1
19
  === 3.20.1 / 2023-05-16
2
20
 
3
21
  * 1 minor enhancement:
data/compare/normalize.rb CHANGED
@@ -84,6 +84,7 @@ def munge s
84
84
 
85
85
  "' '", "tSPACE", # needs to be later to avoid bad hits
86
86
 
87
+ "ε", "none", # bison 3+
87
88
  "%empty", "none", # newer bison
88
89
  "/* empty */", "none",
89
90
  /^\s*$/, "none",