parser 3.2.0.0 → 3.2.1.0
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/parser/all.rb +1 -0
- data/lib/parser/current.rb +10 -1
- data/lib/parser/lexer-F0.rb +8695 -13467
- data/lib/parser/lexer-F1.rb +11590 -17983
- data/lib/parser/lexer-strings.rb +5424 -0
- data/lib/parser/ruby33.rb +12702 -0
- data/lib/parser/runner.rb +5 -0
- data/lib/parser/version.rb +1 -1
- data/lib/parser.rb +1 -0
- metadata +7 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 6d72642d144e7c17c18f780ea9505247feb01477a4780ec8889c7d9c22d07dbb
|
4
|
+
data.tar.gz: ea5ae138b74a0f08240d88841a61f773d648e369e5be3e6154a497860f395c2d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0e34d455ecbc85d7c01b0c3e9acf700ee24e6bf69c5e0af5370184b058f15fa6437f845c3687aefb4ece9bc803ec945902c67d583f02117caceaa7f95b8e4a4f
|
7
|
+
data.tar.gz: 4a8d59fb708d36aec382b76f689722f00fc18d9e0939bb088c94bcee876543946722e765f7e0284a7a2465b1b63d830f0f263ad2f4baac32029d142d38576d0a
|
data/lib/parser/all.rb
CHANGED
data/lib/parser/current.rb
CHANGED
@@ -102,7 +102,7 @@ module Parser
|
|
102
102
|
CurrentRuby = Ruby31
|
103
103
|
|
104
104
|
when /^3\.2\./
|
105
|
-
current_version = '3.2.
|
105
|
+
current_version = '3.2.1'
|
106
106
|
if RUBY_VERSION != current_version
|
107
107
|
warn_syntax_deviation 'parser/ruby32', current_version
|
108
108
|
end
|
@@ -110,6 +110,15 @@ module Parser
|
|
110
110
|
require 'parser/ruby32'
|
111
111
|
CurrentRuby = Ruby32
|
112
112
|
|
113
|
+
when /^3\.3\./
|
114
|
+
current_version = '3.3.0-dev'
|
115
|
+
if RUBY_VERSION != current_version
|
116
|
+
warn_syntax_deviation 'parser/ruby33', current_version
|
117
|
+
end
|
118
|
+
|
119
|
+
require 'parser/ruby33'
|
120
|
+
CurrentRuby = Ruby33
|
121
|
+
|
113
122
|
else # :nocov:
|
114
123
|
# Keep this in sync with released Ruby.
|
115
124
|
warn_syntax_deviation 'parser/ruby32', '3.2.x'
|