jruby-prism-parser 0.24.0-java → 1.4.0-java
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/BSDmakefile +58 -0
- data/CHANGELOG.md +269 -1
- data/CONTRIBUTING.md +0 -4
- data/Makefile +25 -18
- data/README.md +57 -6
- data/config.yml +1724 -140
- data/docs/build_system.md +39 -11
- data/docs/configuration.md +4 -0
- data/docs/cruby_compilation.md +1 -1
- data/docs/fuzzing.md +1 -1
- data/docs/parser_translation.md +14 -9
- data/docs/parsing_rules.md +4 -1
- data/docs/releasing.md +8 -10
- data/docs/relocation.md +34 -0
- data/docs/ripper_translation.md +72 -0
- data/docs/ruby_api.md +2 -1
- data/docs/serialization.md +29 -5
- data/ext/prism/api_node.c +3395 -1999
- data/ext/prism/api_pack.c +9 -0
- data/ext/prism/extconf.rb +55 -34
- data/ext/prism/extension.c +597 -346
- data/ext/prism/extension.h +6 -5
- data/include/prism/ast.h +2612 -455
- data/include/prism/defines.h +160 -2
- data/include/prism/diagnostic.h +188 -76
- data/include/prism/encoding.h +22 -4
- data/include/prism/node.h +89 -17
- data/include/prism/options.h +224 -12
- data/include/prism/pack.h +11 -0
- data/include/prism/parser.h +267 -66
- data/include/prism/prettyprint.h +8 -0
- data/include/prism/regexp.h +18 -8
- data/include/prism/static_literals.h +121 -0
- data/include/prism/util/pm_buffer.h +75 -2
- data/include/prism/util/pm_char.h +1 -2
- data/include/prism/util/pm_constant_pool.h +18 -9
- data/include/prism/util/pm_integer.h +126 -0
- data/include/prism/util/pm_list.h +1 -1
- data/include/prism/util/pm_newline_list.h +19 -0
- data/include/prism/util/pm_string.h +48 -8
- data/include/prism/version.h +3 -3
- data/include/prism.h +99 -5
- data/jruby-prism.jar +0 -0
- data/lib/prism/compiler.rb +11 -1
- data/lib/prism/desugar_compiler.rb +113 -74
- data/lib/prism/dispatcher.rb +45 -1
- data/lib/prism/dot_visitor.rb +201 -77
- data/lib/prism/dsl.rb +673 -461
- data/lib/prism/ffi.rb +233 -45
- data/lib/prism/inspect_visitor.rb +2389 -0
- data/lib/prism/lex_compat.rb +35 -16
- data/lib/prism/mutation_compiler.rb +24 -8
- data/lib/prism/node.rb +7731 -8460
- data/lib/prism/node_ext.rb +328 -32
- data/lib/prism/pack.rb +4 -0
- data/lib/prism/parse_result/comments.rb +34 -24
- data/lib/prism/parse_result/errors.rb +65 -0
- data/lib/prism/parse_result/newlines.rb +102 -12
- data/lib/prism/parse_result.rb +448 -44
- data/lib/prism/pattern.rb +28 -10
- data/lib/prism/polyfill/append_as_bytes.rb +15 -0
- data/lib/prism/polyfill/byteindex.rb +13 -0
- data/lib/prism/polyfill/unpack1.rb +14 -0
- data/lib/prism/reflection.rb +413 -0
- data/lib/prism/relocation.rb +504 -0
- data/lib/prism/serialize.rb +1940 -1198
- data/lib/prism/string_query.rb +30 -0
- data/lib/prism/translation/parser/builder.rb +61 -0
- data/lib/prism/translation/parser/compiler.rb +569 -195
- data/lib/prism/translation/parser/lexer.rb +516 -39
- data/lib/prism/translation/parser.rb +177 -12
- data/lib/prism/translation/parser33.rb +1 -1
- data/lib/prism/translation/parser34.rb +1 -1
- data/lib/prism/translation/parser35.rb +12 -0
- data/lib/prism/translation/ripper/sexp.rb +125 -0
- data/lib/prism/translation/ripper/shim.rb +5 -0
- data/lib/prism/translation/ripper.rb +3224 -462
- data/lib/prism/translation/ruby_parser.rb +194 -69
- data/lib/prism/translation.rb +4 -1
- data/lib/prism/version.rb +1 -1
- data/lib/prism/visitor.rb +13 -0
- data/lib/prism.rb +17 -27
- data/prism.gemspec +57 -17
- data/rbi/prism/compiler.rbi +12 -0
- data/rbi/prism/dsl.rbi +524 -0
- data/rbi/prism/inspect_visitor.rbi +12 -0
- data/rbi/prism/node.rbi +8722 -0
- data/rbi/prism/node_ext.rbi +107 -0
- data/rbi/prism/parse_result.rbi +404 -0
- data/rbi/prism/reflection.rbi +58 -0
- data/rbi/prism/string_query.rbi +12 -0
- data/rbi/prism/translation/parser.rbi +11 -0
- data/rbi/prism/translation/parser33.rbi +6 -0
- data/rbi/prism/translation/parser34.rbi +6 -0
- data/rbi/prism/translation/parser35.rbi +6 -0
- data/rbi/prism/translation/ripper.rbi +15 -0
- data/rbi/prism/visitor.rbi +473 -0
- data/rbi/prism.rbi +44 -7745
- data/sig/prism/compiler.rbs +9 -0
- data/sig/prism/dispatcher.rbs +16 -0
- data/sig/prism/dot_visitor.rbs +6 -0
- data/sig/prism/dsl.rbs +351 -0
- data/sig/prism/inspect_visitor.rbs +22 -0
- data/sig/prism/lex_compat.rbs +10 -0
- data/sig/prism/mutation_compiler.rbs +159 -0
- data/sig/prism/node.rbs +3614 -0
- data/sig/prism/node_ext.rbs +82 -0
- data/sig/prism/pack.rbs +43 -0
- data/sig/prism/parse_result.rbs +192 -0
- data/sig/prism/pattern.rbs +13 -0
- data/sig/prism/reflection.rbs +50 -0
- data/sig/prism/relocation.rbs +185 -0
- data/sig/prism/serialize.rbs +8 -0
- data/sig/prism/string_query.rbs +11 -0
- data/sig/prism/visitor.rbs +169 -0
- data/sig/prism.rbs +248 -4767
- data/src/diagnostic.c +672 -230
- data/src/encoding.c +211 -108
- data/src/node.c +7541 -1653
- data/src/options.c +135 -20
- data/src/pack.c +33 -17
- data/src/prettyprint.c +1543 -1485
- data/src/prism.c +7813 -3050
- data/src/regexp.c +225 -73
- data/src/serialize.c +101 -77
- data/src/static_literals.c +617 -0
- data/src/token_type.c +14 -13
- data/src/util/pm_buffer.c +187 -20
- data/src/util/pm_char.c +5 -5
- data/src/util/pm_constant_pool.c +39 -19
- data/src/util/pm_integer.c +670 -0
- data/src/util/pm_list.c +1 -1
- data/src/util/pm_newline_list.c +43 -5
- data/src/util/pm_string.c +213 -33
- data/src/util/pm_strncasecmp.c +13 -1
- data/src/util/pm_strpbrk.c +32 -6
- metadata +55 -19
- data/docs/ripper.md +0 -36
- data/include/prism/util/pm_state_stack.h +0 -42
- data/include/prism/util/pm_string_list.h +0 -44
- data/lib/prism/debug.rb +0 -206
- data/lib/prism/node_inspector.rb +0 -68
- data/lib/prism/translation/parser/rubocop.rb +0 -45
- data/rbi/prism_static.rbi +0 -207
- data/sig/prism_static.rbs +0 -201
- data/src/util/pm_state_stack.c +0 -25
- data/src/util/pm_string_list.c +0 -28
@@ -1,6 +1,11 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
-
|
3
|
+
begin
|
4
|
+
require "parser"
|
5
|
+
rescue LoadError
|
6
|
+
warn(%q{Error: Unable to load parser. Add `gem "parser"` to your Gemfile.})
|
7
|
+
exit(1)
|
8
|
+
end
|
4
9
|
|
5
10
|
module Prism
|
6
11
|
module Translation
|
@@ -9,22 +14,56 @@ module Prism
|
|
9
14
|
# the parser gem, and overrides the parse* methods to parse with prism and
|
10
15
|
# then translate.
|
11
16
|
class Parser < ::Parser::Base
|
17
|
+
Diagnostic = ::Parser::Diagnostic # :nodoc:
|
18
|
+
private_constant :Diagnostic
|
19
|
+
|
12
20
|
# The parser gem has a list of diagnostics with a hard-coded set of error
|
13
21
|
# messages. We create our own diagnostic class in order to set our own
|
14
22
|
# error messages.
|
15
|
-
class
|
16
|
-
#
|
23
|
+
class PrismDiagnostic < Diagnostic
|
24
|
+
# This is the cached message coming from prism.
|
17
25
|
attr_reader :message
|
18
26
|
|
19
27
|
# Initialize a new diagnostic with the given message and location.
|
20
|
-
def initialize(message, location)
|
28
|
+
def initialize(message, level, reason, location)
|
21
29
|
@message = message
|
22
|
-
super(
|
30
|
+
super(level, reason, {}, location, [])
|
23
31
|
end
|
24
32
|
end
|
25
33
|
|
26
34
|
Racc_debug_parser = false # :nodoc:
|
27
35
|
|
36
|
+
# The `builder` argument is used to create the parser using our custom builder class by default.
|
37
|
+
#
|
38
|
+
# By using the `:parser` keyword argument, you can translate in a way that is compatible with
|
39
|
+
# the Parser gem using any parser.
|
40
|
+
#
|
41
|
+
# For example, in RuboCop for Ruby LSP, the following approach can be used to improve performance
|
42
|
+
# by reusing a pre-parsed `Prism::ParseLexResult`:
|
43
|
+
#
|
44
|
+
# class PrismPreparsed
|
45
|
+
# def initialize(prism_result)
|
46
|
+
# @prism_result = prism_result
|
47
|
+
# end
|
48
|
+
#
|
49
|
+
# def parse_lex(source, **options)
|
50
|
+
# @prism_result
|
51
|
+
# end
|
52
|
+
# end
|
53
|
+
#
|
54
|
+
# prism_preparsed = PrismPreparsed.new(prism_result)
|
55
|
+
#
|
56
|
+
# Prism::Translation::Ruby34.new(builder, parser: prism_preparsed)
|
57
|
+
#
|
58
|
+
# In an object passed to the `:parser` keyword argument, the `parse` and `parse_lex` methods
|
59
|
+
# should be implemented as needed.
|
60
|
+
#
|
61
|
+
def initialize(builder = Prism::Translation::Parser::Builder.new, parser: Prism)
|
62
|
+
@parser = parser
|
63
|
+
|
64
|
+
super(builder)
|
65
|
+
end
|
66
|
+
|
28
67
|
def version # :nodoc:
|
29
68
|
34
|
30
69
|
end
|
@@ -43,7 +82,7 @@ module Prism
|
|
43
82
|
source = source_buffer.source
|
44
83
|
|
45
84
|
offset_cache = build_offset_cache(source)
|
46
|
-
result = unwrap(
|
85
|
+
result = unwrap(@parser.parse(source, **prism_options), offset_cache)
|
47
86
|
|
48
87
|
build_ast(result.value, offset_cache)
|
49
88
|
ensure
|
@@ -56,7 +95,7 @@ module Prism
|
|
56
95
|
source = source_buffer.source
|
57
96
|
|
58
97
|
offset_cache = build_offset_cache(source)
|
59
|
-
result = unwrap(
|
98
|
+
result = unwrap(@parser.parse(source, **prism_options), offset_cache)
|
60
99
|
|
61
100
|
[
|
62
101
|
build_ast(result.value, offset_cache),
|
@@ -75,7 +114,7 @@ module Prism
|
|
75
114
|
offset_cache = build_offset_cache(source)
|
76
115
|
result =
|
77
116
|
begin
|
78
|
-
unwrap(
|
117
|
+
unwrap(@parser.parse_lex(source, **prism_options), offset_cache)
|
79
118
|
rescue ::Parser::SyntaxError
|
80
119
|
raise if !recover
|
81
120
|
end
|
@@ -106,14 +145,123 @@ module Prism
|
|
106
145
|
true
|
107
146
|
end
|
108
147
|
|
148
|
+
# This is a hook to allow consumers to disable some warnings if they don't
|
149
|
+
# want them to block creating the syntax tree.
|
150
|
+
def valid_warning?(warning)
|
151
|
+
true
|
152
|
+
end
|
153
|
+
|
154
|
+
# Build a diagnostic from the given prism parse error.
|
155
|
+
def error_diagnostic(error, offset_cache)
|
156
|
+
location = error.location
|
157
|
+
diagnostic_location = build_range(location, offset_cache)
|
158
|
+
|
159
|
+
case error.type
|
160
|
+
when :argument_block_multi
|
161
|
+
Diagnostic.new(:error, :block_and_blockarg, {}, diagnostic_location, [])
|
162
|
+
when :argument_formal_constant
|
163
|
+
Diagnostic.new(:error, :argument_const, {}, diagnostic_location, [])
|
164
|
+
when :argument_formal_class
|
165
|
+
Diagnostic.new(:error, :argument_cvar, {}, diagnostic_location, [])
|
166
|
+
when :argument_formal_global
|
167
|
+
Diagnostic.new(:error, :argument_gvar, {}, diagnostic_location, [])
|
168
|
+
when :argument_formal_ivar
|
169
|
+
Diagnostic.new(:error, :argument_ivar, {}, diagnostic_location, [])
|
170
|
+
when :argument_no_forwarding_amp
|
171
|
+
Diagnostic.new(:error, :no_anonymous_blockarg, {}, diagnostic_location, [])
|
172
|
+
when :argument_no_forwarding_star
|
173
|
+
Diagnostic.new(:error, :no_anonymous_restarg, {}, diagnostic_location, [])
|
174
|
+
when :argument_no_forwarding_star_star
|
175
|
+
Diagnostic.new(:error, :no_anonymous_kwrestarg, {}, diagnostic_location, [])
|
176
|
+
when :begin_lonely_else
|
177
|
+
location = location.copy(length: 4)
|
178
|
+
diagnostic_location = build_range(location, offset_cache)
|
179
|
+
Diagnostic.new(:error, :useless_else, {}, diagnostic_location, [])
|
180
|
+
when :class_name, :module_name
|
181
|
+
Diagnostic.new(:error, :module_name_const, {}, diagnostic_location, [])
|
182
|
+
when :class_in_method
|
183
|
+
Diagnostic.new(:error, :class_in_def, {}, diagnostic_location, [])
|
184
|
+
when :def_endless_setter
|
185
|
+
Diagnostic.new(:error, :endless_setter, {}, diagnostic_location, [])
|
186
|
+
when :embdoc_term
|
187
|
+
Diagnostic.new(:error, :embedded_document, {}, diagnostic_location, [])
|
188
|
+
when :incomplete_variable_class, :incomplete_variable_class_3_3
|
189
|
+
location = location.copy(length: location.length + 1)
|
190
|
+
diagnostic_location = build_range(location, offset_cache)
|
191
|
+
|
192
|
+
Diagnostic.new(:error, :cvar_name, { name: location.slice }, diagnostic_location, [])
|
193
|
+
when :incomplete_variable_instance, :incomplete_variable_instance_3_3
|
194
|
+
location = location.copy(length: location.length + 1)
|
195
|
+
diagnostic_location = build_range(location, offset_cache)
|
196
|
+
|
197
|
+
Diagnostic.new(:error, :ivar_name, { name: location.slice }, diagnostic_location, [])
|
198
|
+
when :invalid_variable_global, :invalid_variable_global_3_3
|
199
|
+
Diagnostic.new(:error, :gvar_name, { name: location.slice }, diagnostic_location, [])
|
200
|
+
when :module_in_method
|
201
|
+
Diagnostic.new(:error, :module_in_def, {}, diagnostic_location, [])
|
202
|
+
when :numbered_parameter_ordinary
|
203
|
+
Diagnostic.new(:error, :ordinary_param_defined, {}, diagnostic_location, [])
|
204
|
+
when :numbered_parameter_outer_scope
|
205
|
+
Diagnostic.new(:error, :numparam_used_in_outer_scope, {}, diagnostic_location, [])
|
206
|
+
when :parameter_circular
|
207
|
+
Diagnostic.new(:error, :circular_argument_reference, { var_name: location.slice }, diagnostic_location, [])
|
208
|
+
when :parameter_name_repeat
|
209
|
+
Diagnostic.new(:error, :duplicate_argument, {}, diagnostic_location, [])
|
210
|
+
when :parameter_numbered_reserved
|
211
|
+
Diagnostic.new(:error, :reserved_for_numparam, { name: location.slice }, diagnostic_location, [])
|
212
|
+
when :regexp_unknown_options
|
213
|
+
Diagnostic.new(:error, :regexp_options, { options: location.slice[1..] }, diagnostic_location, [])
|
214
|
+
when :singleton_for_literals
|
215
|
+
Diagnostic.new(:error, :singleton_literal, {}, diagnostic_location, [])
|
216
|
+
when :string_literal_eof
|
217
|
+
Diagnostic.new(:error, :string_eof, {}, diagnostic_location, [])
|
218
|
+
when :unexpected_token_ignore
|
219
|
+
Diagnostic.new(:error, :unexpected_token, { token: location.slice }, diagnostic_location, [])
|
220
|
+
when :write_target_in_method
|
221
|
+
Diagnostic.new(:error, :dynamic_const, {}, diagnostic_location, [])
|
222
|
+
else
|
223
|
+
PrismDiagnostic.new(error.message, :error, error.type, diagnostic_location)
|
224
|
+
end
|
225
|
+
end
|
226
|
+
|
227
|
+
# Build a diagnostic from the given prism parse warning.
|
228
|
+
def warning_diagnostic(warning, offset_cache)
|
229
|
+
diagnostic_location = build_range(warning.location, offset_cache)
|
230
|
+
|
231
|
+
case warning.type
|
232
|
+
when :ambiguous_first_argument_plus
|
233
|
+
Diagnostic.new(:warning, :ambiguous_prefix, { prefix: "+" }, diagnostic_location, [])
|
234
|
+
when :ambiguous_first_argument_minus
|
235
|
+
Diagnostic.new(:warning, :ambiguous_prefix, { prefix: "-" }, diagnostic_location, [])
|
236
|
+
when :ambiguous_prefix_ampersand
|
237
|
+
Diagnostic.new(:warning, :ambiguous_prefix, { prefix: "&" }, diagnostic_location, [])
|
238
|
+
when :ambiguous_prefix_star
|
239
|
+
Diagnostic.new(:warning, :ambiguous_prefix, { prefix: "*" }, diagnostic_location, [])
|
240
|
+
when :ambiguous_prefix_star_star
|
241
|
+
Diagnostic.new(:warning, :ambiguous_prefix, { prefix: "**" }, diagnostic_location, [])
|
242
|
+
when :ambiguous_slash
|
243
|
+
Diagnostic.new(:warning, :ambiguous_regexp, {}, diagnostic_location, [])
|
244
|
+
when :dot_dot_dot_eol
|
245
|
+
Diagnostic.new(:warning, :triple_dot_at_eol, {}, diagnostic_location, [])
|
246
|
+
when :duplicated_hash_key
|
247
|
+
# skip, parser does this on its own
|
248
|
+
else
|
249
|
+
PrismDiagnostic.new(warning.message, :warning, warning.type, diagnostic_location)
|
250
|
+
end
|
251
|
+
end
|
252
|
+
|
109
253
|
# If there was a error generated during the parse, then raise an
|
110
254
|
# appropriate syntax error. Otherwise return the result.
|
111
255
|
def unwrap(result, offset_cache)
|
112
256
|
result.errors.each do |error|
|
113
257
|
next unless valid_error?(error)
|
258
|
+
diagnostics.process(error_diagnostic(error, offset_cache))
|
259
|
+
end
|
114
260
|
|
115
|
-
|
116
|
-
|
261
|
+
result.warnings.each do |warning|
|
262
|
+
next unless valid_warning?(warning)
|
263
|
+
diagnostic = warning_diagnostic(warning, offset_cache)
|
264
|
+
diagnostics.process(diagnostic) if diagnostic
|
117
265
|
end
|
118
266
|
|
119
267
|
result
|
@@ -156,7 +304,7 @@ module Prism
|
|
156
304
|
|
157
305
|
# Build the parser gem tokens from the prism tokens.
|
158
306
|
def build_tokens(tokens, offset_cache)
|
159
|
-
Lexer.new(source_buffer, tokens
|
307
|
+
Lexer.new(source_buffer, tokens, offset_cache).to_a
|
160
308
|
end
|
161
309
|
|
162
310
|
# Build a range from a prism location.
|
@@ -168,18 +316,35 @@ module Prism
|
|
168
316
|
)
|
169
317
|
end
|
170
318
|
|
319
|
+
# Options for how prism should parse/lex the source.
|
320
|
+
def prism_options
|
321
|
+
options = {
|
322
|
+
filepath: @source_buffer.name,
|
323
|
+
version: convert_for_prism(version),
|
324
|
+
partial_script: true,
|
325
|
+
}
|
326
|
+
# The parser gem always encodes to UTF-8, unless it is binary.
|
327
|
+
# https://github.com/whitequark/parser/blob/v3.3.6.0/lib/parser/source/buffer.rb#L80-L107
|
328
|
+
options[:encoding] = false if @source_buffer.source.encoding != Encoding::BINARY
|
329
|
+
|
330
|
+
options
|
331
|
+
end
|
332
|
+
|
171
333
|
# Converts the version format handled by Parser to the format handled by Prism.
|
172
334
|
def convert_for_prism(version)
|
173
335
|
case version
|
174
336
|
when 33
|
175
|
-
"3.3.
|
337
|
+
"3.3.1"
|
176
338
|
when 34
|
177
339
|
"3.4.0"
|
340
|
+
when 35
|
341
|
+
"3.5.0"
|
178
342
|
else
|
179
343
|
"latest"
|
180
344
|
end
|
181
345
|
end
|
182
346
|
|
347
|
+
require_relative "parser/builder"
|
183
348
|
require_relative "parser/compiler"
|
184
349
|
require_relative "parser/lexer"
|
185
350
|
|
@@ -0,0 +1,125 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require_relative "../ripper"
|
4
|
+
|
5
|
+
module Prism
|
6
|
+
module Translation
|
7
|
+
class Ripper
|
8
|
+
# This class mirrors the ::Ripper::SexpBuilder subclass of ::Ripper that
|
9
|
+
# returns the arrays of [type, *children].
|
10
|
+
class SexpBuilder < Ripper
|
11
|
+
# :stopdoc:
|
12
|
+
|
13
|
+
attr_reader :error
|
14
|
+
|
15
|
+
private
|
16
|
+
|
17
|
+
def dedent_element(e, width)
|
18
|
+
if (n = dedent_string(e[1], width)) > 0
|
19
|
+
e[2][1] += n
|
20
|
+
end
|
21
|
+
e
|
22
|
+
end
|
23
|
+
|
24
|
+
def on_heredoc_dedent(val, width)
|
25
|
+
sub = proc do |cont|
|
26
|
+
cont.map! do |e|
|
27
|
+
if Array === e
|
28
|
+
case e[0]
|
29
|
+
when :@tstring_content
|
30
|
+
e = dedent_element(e, width)
|
31
|
+
when /_add\z/
|
32
|
+
e[1] = sub[e[1]]
|
33
|
+
end
|
34
|
+
elsif String === e
|
35
|
+
dedent_string(e, width)
|
36
|
+
end
|
37
|
+
e
|
38
|
+
end
|
39
|
+
end
|
40
|
+
sub[val]
|
41
|
+
val
|
42
|
+
end
|
43
|
+
|
44
|
+
events = private_instance_methods(false).grep(/\Aon_/) {$'.to_sym}
|
45
|
+
(PARSER_EVENTS - events).each do |event|
|
46
|
+
module_eval(<<-End, __FILE__, __LINE__ + 1)
|
47
|
+
def on_#{event}(*args)
|
48
|
+
args.unshift :#{event}
|
49
|
+
end
|
50
|
+
End
|
51
|
+
end
|
52
|
+
|
53
|
+
SCANNER_EVENTS.each do |event|
|
54
|
+
module_eval(<<-End, __FILE__, __LINE__ + 1)
|
55
|
+
def on_#{event}(tok)
|
56
|
+
[:@#{event}, tok, [lineno(), column()]]
|
57
|
+
end
|
58
|
+
End
|
59
|
+
end
|
60
|
+
|
61
|
+
def on_error(mesg)
|
62
|
+
@error = mesg
|
63
|
+
end
|
64
|
+
remove_method :on_parse_error
|
65
|
+
alias on_parse_error on_error
|
66
|
+
alias compile_error on_error
|
67
|
+
|
68
|
+
# :startdoc:
|
69
|
+
end
|
70
|
+
|
71
|
+
# This class mirrors the ::Ripper::SexpBuilderPP subclass of ::Ripper that
|
72
|
+
# returns the same values as ::Ripper::SexpBuilder except with a couple of
|
73
|
+
# niceties that flatten linked lists into arrays.
|
74
|
+
class SexpBuilderPP < SexpBuilder
|
75
|
+
# :stopdoc:
|
76
|
+
|
77
|
+
private
|
78
|
+
|
79
|
+
def on_heredoc_dedent(val, width)
|
80
|
+
val.map! do |e|
|
81
|
+
next e if Symbol === e and /_content\z/ =~ e
|
82
|
+
if Array === e and e[0] == :@tstring_content
|
83
|
+
e = dedent_element(e, width)
|
84
|
+
elsif String === e
|
85
|
+
dedent_string(e, width)
|
86
|
+
end
|
87
|
+
e
|
88
|
+
end
|
89
|
+
val
|
90
|
+
end
|
91
|
+
|
92
|
+
def _dispatch_event_new
|
93
|
+
[]
|
94
|
+
end
|
95
|
+
|
96
|
+
def _dispatch_event_push(list, item)
|
97
|
+
list.push item
|
98
|
+
list
|
99
|
+
end
|
100
|
+
|
101
|
+
def on_mlhs_paren(list)
|
102
|
+
[:mlhs, *list]
|
103
|
+
end
|
104
|
+
|
105
|
+
def on_mlhs_add_star(list, star)
|
106
|
+
list.push([:rest_param, star])
|
107
|
+
end
|
108
|
+
|
109
|
+
def on_mlhs_add_post(list, post)
|
110
|
+
list.concat(post)
|
111
|
+
end
|
112
|
+
|
113
|
+
PARSER_EVENT_TABLE.each do |event, arity|
|
114
|
+
if /_new\z/ =~ event and arity == 0
|
115
|
+
alias_method "on_#{event}", :_dispatch_event_new
|
116
|
+
elsif /_add\z/ =~ event
|
117
|
+
alias_method "on_#{event}", :_dispatch_event_push
|
118
|
+
end
|
119
|
+
end
|
120
|
+
|
121
|
+
# :startdoc:
|
122
|
+
end
|
123
|
+
end
|
124
|
+
end
|
125
|
+
end
|