Class: IRB::RubyLex
Overview
Defined Under Namespace
Classes: TerminateLineInput
Constant Summary
collapse
- ASSIGNMENT_NODE_TYPES =
[
:assign,
:opassign,
:massign,
]
- ERROR_TOKENS =
[
:on_parse_error,
:compile_error,
:on_assign_error,
:on_alias_error,
:on_class_name_error,
:on_param_error
]
- LTYPE_TOKENS =
i[
on_heredoc_beg on_tstring_beg
on_regexp_beg on_symbeg on_backtick
on_symbols_beg on_qsymbols_beg
on_words_beg on_qwords_beg
]
- RESERVED_WORDS =
i[
__ENCODING__ __LINE__ __FILE__
BEGIN END
alias and
begin break
case class
def defined? do
else elsif end ensure
false for
if in
module
next nil not
or
redo rescue retry return
self super
then true
undef unless until
when while
yield
]
- FREE_INDENT_NESTINGS =
i[on_tstring_beg on_backtick on_regexp_beg on_symbeg]
Class Method Summary
collapse
Instance Method Summary
collapse
-
#assignment_expression?(code, local_variables:) ⇒ Boolean
-
#calc_indent_level(opens) ⇒ Object
-
#check_code_state(code, local_variables:) ⇒ Object
-
#check_code_syntax(code, local_variables:) ⇒ Object
-
#check_termination_in_prev_line(code, local_variables:) ⇒ Object
-
#code_terminated?(code, tokens, opens, local_variables:) ⇒ Boolean
-
#free_indent_nesting_element?(elem) ⇒ Boolean
-
#indent_difference(lines, line_results, line_index) ⇒ Object
Calculates the difference of pasted code’s indent and indent calculated from tokens.
-
#ltype_from_open_nestings(opens) ⇒ Object
-
#process_indent_level(parse_lex_result, lines, line_index, is_newline) ⇒ Object
-
#should_continue?(tokens) ⇒ Boolean
Class Method Details
.compile_with_errors_suppressed(code, line_no: 1) ⇒ Object
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
|
# File 'lib/irb/ruby-lex.rb', line 84
def compile_with_errors_suppressed(code, line_no: 1)
begin
result = yield code, line_no
rescue ArgumentError
code = ";\n#{code}"
line_no -= 1
result = yield code, line_no
end
result
end
|
.generate_local_variables_assign_code(local_variables) ⇒ Object
101
102
103
104
105
106
107
|
# File 'lib/irb/ruby-lex.rb', line 101
def generate_local_variables_assign_code(local_variables)
local_variables -= RESERVED_WORDS
"#{local_variables.join('=')}=nil;" unless local_variables.empty?
end
|
.interpolate_ripper_ignored_tokens(code, tokens) ⇒ Object
Some part of the code is not included in Ripper’s token. Example: DATA part, token after heredoc_beg when heredoc has unclosed embexpr. With interpolated tokens, tokens.map(&:tok).join will be equal to code.
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
|
# File 'lib/irb/ruby-lex.rb', line 112
def interpolate_ripper_ignored_tokens(code, tokens)
line_positions = [0]
code.lines.each do |line|
line_positions << line_positions.last + line.bytesize
end
prev_byte_pos = 0
interpolated = []
prev_line = 1
tokens.each do |t|
line, col = t.pos
byte_pos = line_positions[line - 1] + col
if prev_byte_pos < byte_pos
tok = code.byteslice(prev_byte_pos...byte_pos)
pos = [prev_line, prev_byte_pos - line_positions[prev_line - 1]]
interpolated << Ripper::Lexer::Elem.new(pos, :on_ignored_by_ripper, tok, 0)
prev_line += tok.count("\n")
end
interpolated << t
prev_byte_pos = byte_pos + t.tok.bytesize
prev_line += t.tok.count("\n")
end
if prev_byte_pos < code.bytesize
tok = code.byteslice(prev_byte_pos..)
pos = [prev_line, prev_byte_pos - line_positions[prev_line - 1]]
interpolated << Ripper::Lexer::Elem.new(pos, :on_ignored_by_ripper, tok, 0)
end
interpolated
end
|
.ripper_lex_without_warning(code, local_variables: []) ⇒ Object
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
|
# File 'lib/irb/ruby-lex.rb', line 141
def ripper_lex_without_warning(code, local_variables: [])
verbose, $VERBOSE = $VERBOSE, nil
lvars_code = generate_local_variables_assign_code(local_variables)
original_code = code
if lvars_code
code = "#{lvars_code}\n#{code}"
line_no = 0
else
line_no = 1
end
compile_with_errors_suppressed(code, line_no: line_no) do |inner_code, line_no|
lexer = Ripper::Lexer.new(inner_code, '-', line_no)
tokens = []
lexer.scan.each do |t|
next if t.pos.first == 0
prev_tk = tokens.last
position_overlapped = prev_tk && t.pos[0] == prev_tk.pos[0] && t.pos[1] < prev_tk.pos[1] + prev_tk.tok.bytesize
if position_overlapped
tokens[-1] = t if ERROR_TOKENS.include?(prev_tk.event) && !ERROR_TOKENS.include?(t.event)
else
tokens << t
end
end
interpolate_ripper_ignored_tokens(original_code, tokens)
end
ensure
$VERBOSE = verbose
end
|
Instance Method Details
#assignment_expression?(code, local_variables:) ⇒ Boolean
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
|
# File 'lib/irb/ruby-lex.rb', line 191
def assignment_expression?(code, local_variables:)
verbose, $VERBOSE = $VERBOSE, nil
code = "#{RubyLex.generate_local_variables_assign_code(local_variables) || 'nil;'}\n#{code}"
node_type = Ripper.sexp(code)&.dig(1)&.drop(1)&.dig(-1, 0)
ASSIGNMENT_NODE_TYPES.include?(node_type)
ensure
$VERBOSE = verbose
end
|
#calc_indent_level(opens) ⇒ Object
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
|
# File 'lib/irb/ruby-lex.rb', line 309
def calc_indent_level(opens)
indent_level = 0
opens.each_with_index do |elem, index|
case elem.event
when :on_heredoc_beg
if opens[index + 1]&.event != :on_heredoc_beg
if elem.tok.match?(/^<<[~-]/)
indent_level += 1
else
indent_level = 0
end
end
when :on_tstring_beg, :on_regexp_beg, :on_symbeg, :on_backtick
indent_level += 1 if elem.tok.start_with? '%'
when :on_embdoc_beg
indent_level = 0
else
indent_level += 1 unless elem.tok == 'alias' || elem.tok == 'undef'
end
end
indent_level
end
|
#check_code_state(code, local_variables:) ⇒ Object
172
173
174
175
176
|
# File 'lib/irb/ruby-lex.rb', line 172
def check_code_state(code, local_variables:)
tokens = self.class.ripper_lex_without_warning(code, local_variables: local_variables)
opens = NestingParser.open_nestings(Prism.parse_lex(code, scopes: [local_variables]))
[tokens, opens, code_terminated?(code, tokens, opens, local_variables: local_variables)]
end
|
#check_code_syntax(code, local_variables:) ⇒ Object
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
|
# File 'lib/irb/ruby-lex.rb', line 233
def check_code_syntax(code, local_variables:)
lvars_code = RubyLex.generate_local_variables_assign_code(local_variables)
code = "#{lvars_code}\n#{code}"
begin
verbose, $VERBOSE = $VERBOSE, nil
case RUBY_ENGINE
when 'ruby'
self.class.compile_with_errors_suppressed(code) do |inner_code, line_no|
RubyVM::InstructionSequence.compile(inner_code, nil, nil, line_no)
end
when 'jruby'
JRuby.compile_ir(code)
else
catch(:valid) do
eval("BEGIN { throw :valid, true }\n#{code}")
false
end
end
rescue EncodingError
:unrecoverable_error
rescue SyntaxError => e
case e.message
when /unexpected keyword_end/
return :unrecoverable_error
when /unexpected '\.'/
return :unrecoverable_error
when /unexpected tREGEXP_BEG/
return :unrecoverable_error
when /unterminated (?:string|regexp) meets end of file/
return :recoverable_error
when /unexpected end-of-input/
return :recoverable_error
else
return :other_error
end
ensure
$VERBOSE = verbose
end
:valid
end
|
#check_termination_in_prev_line(code, local_variables:) ⇒ Object
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
|
# File 'lib/irb/ruby-lex.rb', line 459
def check_termination_in_prev_line(code, local_variables:)
tokens = self.class.ripper_lex_without_warning(code, local_variables: local_variables)
past_first_newline = false
index = tokens.rindex do |t|
if past_first_newline
if t.tok.include?("\n")
true
end
elsif t.tok.include?("\n")
past_first_newline = true
false
else
false
end
end
if index
first_token = nil
last_line_tokens = tokens[(index + 1)..(tokens.size - 1)]
last_line_tokens.each do |t|
unless [:on_sp, :on_ignored_sp, :on_comment].include?(t.event)
first_token = t
break
end
end
if first_token && first_token.state != Ripper::EXPR_DOT
tokens_without_last_line = tokens[0..index]
code_without_last_line = tokens_without_last_line.map(&:tok).join
opens_without_last_line = NestingParser.open_nestings(Prism.parse_lex(code_without_last_line, scopes: [local_variables]))
if code_terminated?(code_without_last_line, tokens_without_last_line, opens_without_last_line, local_variables: local_variables)
return last_line_tokens.map(&:tok).join
end
end
end
false
end
|
#code_terminated?(code, tokens, opens, local_variables:) ⇒ Boolean
178
179
180
181
182
183
184
185
186
187
188
189
|
# File 'lib/irb/ruby-lex.rb', line 178
def code_terminated?(code, tokens, opens, local_variables:)
case check_code_syntax(code, local_variables: local_variables)
when :unrecoverable_error
true
when :recoverable_error
false
when :other_error
opens.empty? && !should_continue?(tokens)
when :valid
!should_continue?(tokens)
end
end
|
#free_indent_nesting_element?(elem) ⇒ Boolean
336
337
338
|
# File 'lib/irb/ruby-lex.rb', line 336
def free_indent_nesting_element?(elem)
FREE_INDENT_NESTINGS.include?(elem&.event)
end
|
#indent_difference(lines, line_results, line_index) ⇒ Object
Calculates the difference of pasted code’s indent and indent calculated from tokens
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
|
# File 'lib/irb/ruby-lex.rb', line 341
def indent_difference(lines, line_results, line_index)
loop do
prev_opens, _next_opens, min_depth = line_results[line_index]
open_elem = prev_opens.last
if !open_elem || (open_elem.event != :on_heredoc_beg && !free_indent_nesting_element?(open_elem))
indent_level = calc_indent_level(prev_opens.take(min_depth))
calculated_indent = 2 * indent_level
actual_indent = lines[line_index][/^ */].size
return actual_indent - calculated_indent
elsif open_elem.event == :on_heredoc_beg && open_elem.tok.match?(/^<<[^-~]/)
return 0
end
line_index = open_elem.pos[0] - 1
end
end
|
#ltype_from_open_nestings(opens) ⇒ Object
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
|
# File 'lib/irb/ruby-lex.rb', line 429
def ltype_from_open_nestings(opens)
start_nesting = opens.reverse_each.find do |elem|
LTYPE_TOKENS.include?(elem.event)
end
return nil unless start_nesting
case start_nesting&.event
when :on_tstring_beg
case start_nesting&.tok
when ?" then ?"
when /^%.$/ then ?"
when /^%Q.$/ then ?"
when ?' then ?'
when /^%q.$/ then ?'
end
when :on_regexp_beg then ?/
when :on_symbeg then ?:
when :on_backtick then ?`
when :on_qwords_beg then ?]
when :on_words_beg then ?]
when :on_qsymbols_beg then ?]
when :on_symbols_beg then ?]
when :on_heredoc_beg
start_nesting&.tok =~ /<<[-~]?(['"`])\w+\1/
$1 || ?"
else
nil
end
end
|
#process_indent_level(parse_lex_result, lines, line_index, is_newline) ⇒ Object
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
|
# File 'lib/irb/ruby-lex.rb', line 360
def process_indent_level(parse_lex_result, lines, line_index, is_newline)
line_results = NestingParser.parse_by_line(parse_lex_result)
result = line_results[line_index]
if result
prev_opens, next_opens, min_depth = result
else
prev_opens = next_opens = line_results.last[1]
min_depth = next_opens.size
end
indent = 2 * calc_indent_level(prev_opens.take(min_depth))
preserve_indent = lines[line_index - (is_newline ? 1 : 0)][/^ */].size
prev_open_elem = prev_opens.last
next_open_elem = next_opens.last
if prev_open_elem
base_indent = [0, indent_difference(lines, line_results, prev_open_elem.pos[0] - 1)].max
else
base_indent = 0
end
if free_indent_nesting_element?(prev_open_elem)
if is_newline && prev_open_elem.pos[0] == line_index
base_indent + indent
else
preserve_indent
end
elsif prev_open_elem&.event == :on_embdoc_beg || next_open_elem&.event == :on_embdoc_beg
if prev_open_elem&.event == next_open_elem&.event
preserve_indent
else
0
end
elsif prev_open_elem&.event == :on_heredoc_beg
tok = prev_open_elem.tok
if prev_opens.size <= next_opens.size
if is_newline && lines[line_index].empty? && line_results[line_index - 1][0].last != next_open_elem
tok.match?(/^<<[-~]/) ? base_indent + indent : indent
elsif tok.match?(/^<<~/)
[base_indent + indent, preserve_indent].max
else
preserve_indent
end
else
prev_line_indent_level = calc_indent_level(prev_opens)
tok.match?(/^<<[~-]/) ? base_indent + 2 * (prev_line_indent_level - 1) : 0
end
else
base_indent + indent
end
end
|
#should_continue?(tokens) ⇒ Boolean
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
|
# File 'lib/irb/ruby-lex.rb', line 209
def should_continue?(tokens)
return true if tokens.last&.event == :on_sp && tokens.last.tok == "\\\n"
tokens.reverse_each do |token|
case token.event
when :on_sp, :on_nl, :on_ignored_nl, :on_comment, :on_embdoc_beg, :on_embdoc, :on_embdoc_end
when :on_regexp_end, :on_heredoc_end, :on_semicolon
return false
else
return false if token.event == :on_op && token.tok.match?(/\A\.\.\.?\z/)
return token.state.anybits?(Ripper::EXPR_BEG | Ripper::EXPR_DOT)
end
end
false
end
|