Class: Prism::Translation::Ripper

Inherits:
Compiler show all
Defined in:
lib/prism/translation/ripper.rb,
lib/prism/translation/ripper/sexp.rb,
lib/prism/translation/ripper/lexer.rb,
lib/prism/translation/ripper/filter.rb

Overview

This class provides a compatibility layer between prism and Ripper. It functions by parsing the entire tree first and then walking it and executing each of the Ripper callbacks as it goes. To use this class, you treat Prism::Translation::Ripper effectively as you would treat the Ripper class.

Note that this class will serve the most common use cases, but Ripper’s API is extensive and undocumented. It relies on reporting the state of the parser at any given time. We do our best to replicate that here, but because it is a different architecture it is not possible to perfectly replicate the behavior of Ripper.

The main known difference is that we may omit dispatching some events in some cases. This impacts the following events:

  • on_assign_error

  • on_comma

  • on_ignored_nl

  • on_ignored_sp

  • on_kw

  • on_label_end

  • on_lbrace

  • on_lbracket

  • on_lparen

  • on_nl

  • on_op

  • on_operator_ambiguous

  • on_rbrace

  • on_rbracket

  • on_rparen

  • on_semicolon

  • on_sp

  • on_symbeg

  • on_tstring_beg

  • on_tstring_end

Direct Known Subclasses

Lexer, SexpBuilder

Defined Under Namespace

Classes: Filter, Lexer, SexpBuilder, SexpBuilderPP

Constant Summary collapse

PARSER_EVENT_TABLE =

This contains a table of all of the parser events and their corresponding arity.

{
  BEGIN: 1,
  END: 1,
  alias: 2,
  alias_error: 2,
  aref: 2,
  aref_field: 2,
  arg_ambiguous: 1,
  arg_paren: 1,
  args_add: 2,
  args_add_block: 2,
  args_add_star: 2,
  args_forward: 0,
  args_new: 0,
  array: 1,
  aryptn: 4,
  assign: 2,
  assign_error: 2,
  assoc_new: 2,
  assoc_splat: 1,
  assoclist_from_args: 1,
  bare_assoc_hash: 1,
  begin: 1,
  binary: 3,
  block_var: 2,
  blockarg: 1,
  bodystmt: 4,
  brace_block: 2,
  break: 1,
  call: 3,
  case: 2,
  class: 3,
  class_name_error: 2,
  command: 2,
  command_call: 4,
  const_path_field: 2,
  const_path_ref: 2,
  const_ref: 1,
  def: 3,
  defined: 1,
  defs: 5,
  do_block: 2,
  dot2: 2,
  dot3: 2,
  dyna_symbol: 1,
  else: 1,
  elsif: 3,
  ensure: 1,
  excessed_comma: 0,
  fcall: 1,
  field: 3,
  fndptn: 4,
  for: 3,
  hash: 1,
  heredoc_dedent: 2,
  hshptn: 3,
  if: 3,
  if_mod: 2,
  ifop: 3,
  in: 3,
  kwrest_param: 1,
  lambda: 2,
  magic_comment: 2,
  massign: 2,
  method_add_arg: 2,
  method_add_block: 2,
  mlhs_add: 2,
  mlhs_add_post: 2,
  mlhs_add_star: 2,
  mlhs_new: 0,
  mlhs_paren: 1,
  module: 2,
  mrhs_add: 2,
  mrhs_add_star: 2,
  mrhs_new: 0,
  mrhs_new_from_args: 1,
  next: 1,
  nokw_param: 1,
  opassign: 3,
  operator_ambiguous: 2,
  param_error: 2,
  params: 7,
  paren: 1,
  parse_error: 1,
  program: 1,
  qsymbols_add: 2,
  qsymbols_new: 0,
  qwords_add: 2,
  qwords_new: 0,
  redo: 0,
  regexp_add: 2,
  regexp_literal: 2,
  regexp_new: 0,
  rescue: 4,
  rescue_mod: 2,
  rest_param: 1,
  retry: 0,
  return: 1,
  return0: 0,
  sclass: 2,
  stmts_add: 2,
  stmts_new: 0,
  string_add: 2,
  string_concat: 2,
  string_content: 0,
  string_dvar: 1,
  string_embexpr: 1,
  string_literal: 1,
  super: 1,
  symbol: 1,
  symbol_literal: 1,
  symbols_add: 2,
  symbols_new: 0,
  top_const_field: 1,
  top_const_ref: 1,
  unary: 2,
  undef: 1,
  unless: 3,
  unless_mod: 2,
  until: 2,
  until_mod: 2,
  var_alias: 2,
  var_field: 1,
  var_ref: 1,
  vcall: 1,
  void_stmt: 0,
  when: 3,
  while: 2,
  while_mod: 2,
  word_add: 2,
  word_new: 0,
  words_add: 2,
  words_new: 0,
  xstring_add: 2,
  xstring_literal: 1,
  xstring_new: 0,
  yield: 1,
  yield0: 0,
  zsuper: 0
}
SCANNER_EVENT_TABLE =

This contains a table of all of the scanner events and their corresponding arity.

{
  CHAR: 1,
  __end__: 1,
  backref: 1,
  backtick: 1,
  comma: 1,
  comment: 1,
  const: 1,
  cvar: 1,
  embdoc: 1,
  embdoc_beg: 1,
  embdoc_end: 1,
  embexpr_beg: 1,
  embexpr_end: 1,
  embvar: 1,
  float: 1,
  gvar: 1,
  heredoc_beg: 1,
  heredoc_end: 1,
  ident: 1,
  ignored_nl: 1,
  imaginary: 1,
  int: 1,
  ivar: 1,
  kw: 1,
  label: 1,
  label_end: 1,
  lbrace: 1,
  lbracket: 1,
  lparen: 1,
  nl: 1,
  op: 1,
  period: 1,
  qsymbols_beg: 1,
  qwords_beg: 1,
  rational: 1,
  rbrace: 1,
  rbracket: 1,
  regexp_beg: 1,
  regexp_end: 1,
  rparen: 1,
  semicolon: 1,
  sp: 1,
  symbeg: 1,
  symbols_beg: 1,
  tlambda: 1,
  tlambeg: 1,
  tstring_beg: 1,
  tstring_content: 1,
  tstring_end: 1,
  words_beg: 1,
  words_sep: 1,
  ignored_sp: 1
}
PARSER_EVENTS =

This array contains name of parser events.

PARSER_EVENT_TABLE.keys
SCANNER_EVENTS =

This array contains name of scanner events.

SCANNER_EVENT_TABLE.keys
EVENTS =

This array contains name of all ripper events.

PARSER_EVENTS + SCANNER_EVENTS
EXPR_NONE =
0
EXPR_VALUE =
EXPR_BEG
EXPR_BEG_ANY =
EXPR_BEG | EXPR_MID | EXPR_CLASS
EXPR_ARG_ANY =
EXPR_ARG | EXPR_CMDARG
EXPR_END_ANY =
EXPR_END | EXPR_ENDARG | EXPR_ENDFN

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from BasicVisitor

#visit, #visit_all, #visit_child_nodes

Constructor Details

#initialize(source, filename = "(ripper)", lineno = 1) ⇒ Ripper

Create a new Translation::Ripper object with the given source.



482
483
484
485
486
487
488
# File 'lib/prism/translation/ripper.rb', line 482

def initialize(source, filename = "(ripper)", lineno = 1)
  @source = source
  @filename = filename
  @lineno = lineno
  @column = 0
  @result = nil
end

Instance Attribute Details

#columnObject (readonly)

The current column number of the parser.



479
480
481
# File 'lib/prism/translation/ripper.rb', line 479

def column
  @column
end

#filenameObject (readonly)

The filename of the source being parsed.



473
474
475
# File 'lib/prism/translation/ripper.rb', line 473

def filename
  @filename
end

#linenoObject (readonly)

The current line number of the parser.



476
477
478
# File 'lib/prism/translation/ripper.rb', line 476

def lineno
  @lineno
end

#sourceObject (readonly)

The source that is being parsed.



470
471
472
# File 'lib/prism/translation/ripper.rb', line 470

def source
  @source
end

Class Method Details

.lex(src, filename = "-", lineno = 1, raise_errors: false) ⇒ Object

Tokenizes the Ruby program and returns an array of an array, which is formatted like [[lineno, column], type, token, state]. The filename argument is mostly ignored. By default, this method does not handle syntax errors in src, use the raise_errors keyword to raise a SyntaxError for an error in src.

require "ripper"
require "pp"

pp Ripper.lex("def m(a) nil end")
#=> [[[1,  0], :on_kw,     "def", FNAME    ],
     [[1,  3], :on_sp,     " ",   FNAME    ],
     [[1,  4], :on_ident,  "m",   ENDFN    ],
     [[1,  5], :on_lparen, "(",   BEG|LABEL],
     [[1,  6], :on_ident,  "a",   ARG      ],
     [[1,  7], :on_rparen, ")",   ENDFN    ],
     [[1,  8], :on_sp,     " ",   BEG      ],
     [[1,  9], :on_kw,     "nil", END      ],
     [[1, 12], :on_sp,     " ",   END      ],
     [[1, 13], :on_kw,     "end", END      ]]


71
72
73
74
75
76
77
78
79
# File 'lib/prism/translation/ripper.rb', line 71

def self.lex(src, filename = "-", lineno = 1, raise_errors: false)
  result = Prism.lex_compat(src, filepath: filename, line: lineno, version: "current")

  if result.failure? && raise_errors
    raise SyntaxError, result.errors.first.message
  else
    result.value
  end
end

.lex_state_name(state) ⇒ Object



463
464
465
# File 'lib/prism/translation/ripper.rb', line 463

def self.lex_state_name(state)
  LEX_STATE_NAMES.filter_map { |flag, name| name if state & flag != 0  }.join("|")
end

.parse(src, filename = "(ripper)", lineno = 1) ⇒ Object

Parses the given Ruby program read from src. src must be a String or an IO or a object with a #gets method.



45
46
47
# File 'lib/prism/translation/ripper.rb', line 45

def self.parse(src, filename = "(ripper)", lineno = 1)
  new(src, filename, lineno).parse
end

.sexp(src, filename = "-", lineno = 1, raise_errors: false) ⇒ Object

Parses src and create S-exp tree. Returns more readable tree rather than Ripper.sexp_raw. This method is mainly for developer use. The filename argument is mostly ignored. By default, this method does not handle syntax errors in src, returning nil in such cases. Use the raise_errors keyword to raise a SyntaxError for an error in src.

require "ripper"
require "pp"

pp Ripper.sexp("def m(a) nil end")
  #=> [:program,
       [[:def,
        [:@ident, "m", [1, 4]],
        [:paren, [:params, [[:@ident, "a", [1, 6]]], nil, nil, nil, nil, nil, nil]],
        [:bodystmt, [[:var_ref, [:@kw, "nil", [1, 9]]]], nil, nil, nil]]]]


393
394
395
396
397
398
399
400
401
402
403
# File 'lib/prism/translation/ripper.rb', line 393

def self.sexp(src, filename = "-", lineno = 1, raise_errors: false)
  builder = SexpBuilderPP.new(src, filename, lineno)
  sexp = builder.parse
  if builder.error?
    if raise_errors
      raise SyntaxError, builder.error
    end
  else
    sexp
  end
end

.sexp_raw(src, filename = "-", lineno = 1, raise_errors: false) ⇒ Object

Parses src and create S-exp tree. This method is mainly for developer use. The filename argument is mostly ignored. By default, this method does not handle syntax errors in src, returning nil in such cases. Use the raise_errors keyword to raise a SyntaxError for an error in src.

require "ripper"
require "pp"

pp Ripper.sexp_raw("def m(a) nil end")
  #=> [:program,
       [:stmts_add,
        [:stmts_new],
        [:def,
         [:@ident, "m", [1, 4]],
         [:paren, [:params, [[:@ident, "a", [1, 6]]], nil, nil, nil]],
         [:bodystmt,
          [:stmts_add, [:stmts_new], [:var_ref, [:@kw, "nil", [1, 9]]]],
          nil,
          nil,
          nil]]]]


428
429
430
431
432
433
434
435
436
437
438
# File 'lib/prism/translation/ripper.rb', line 428

def self.sexp_raw(src, filename = "-", lineno = 1, raise_errors: false)
  builder = SexpBuilder.new(src, filename, lineno)
  sexp = builder.parse
  if builder.error?
    if raise_errors
      raise SyntaxError, builder.error
    end
  else
    sexp
  end
end

.tokenizeObject

Tokenizes the Ruby program and returns an array of strings. The filename and lineno arguments are mostly ignored, since the return value is just the tokenized input. By default, this method does not handle syntax errors in src, use the raise_errors keyword to raise a SyntaxError for an error in src.

p Ripper.tokenize("def m(a) nil end")
   # => ["def", " ", "m", "(", "a", ")", " ", "nil", " ", "end"]


90
91
92
# File 'lib/prism/translation/ripper.rb', line 90

def self.tokenize(...)
  lex(...).map(&:value)
end

Instance Method Details

#error?Boolean

True if the parser encountered an error during parsing.

Returns:

  • (Boolean)


495
496
497
# File 'lib/prism/translation/ripper.rb', line 495

def error?
  result.failure?
end

#parseObject

Parse the source and return the result.



500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
# File 'lib/prism/translation/ripper.rb', line 500

def parse
  result.comments.each do |comment|
    location = comment.location
    bounds(location)

    if comment.is_a?(InlineComment)
      on_comment(comment.slice)
    else
      offset = location.start_offset
      lines = comment.slice.lines

      lines.each_with_index do |line, index|
        bounds(location.copy(start_offset: offset))

        if index == 0
          on_embdoc_beg(line)
        elsif index == lines.size - 1
          on_embdoc_end(line)
        else
          on_embdoc(line)
        end

        offset += line.bytesize
      end
    end
  end

  result.magic_comments.each do |magic_comment|
    on_magic_comment(magic_comment.key, magic_comment.value)
  end

  unless result.data_loc.nil?
    on___end__(result.data_loc.slice.each_line.first)
  end

  result.warnings.each do |warning|
    bounds(warning.location)

    if warning.level == :default
      warning(warning.message)
    else
      case warning.type
      when :ambiguous_first_argument_plus
        on_arg_ambiguous("+")
      when :ambiguous_first_argument_minus
        on_arg_ambiguous("-")
      when :ambiguous_slash
        on_arg_ambiguous("/")
      else
        warn(warning.message)
      end
    end
  end

  if error?
    result.errors.each do |error|
      location = error.location
      bounds(location)

      case error.type
      when :alias_argument
        on_alias_error("can't make alias for the number variables", location.slice)
      when :argument_formal_class
        on_param_error("formal argument cannot be a class variable", location.slice)
      when :argument_format_constant
        on_param_error("formal argument cannot be a constant", location.slice)
      when :argument_formal_global
        on_param_error("formal argument cannot be a global variable", location.slice)
      when :argument_formal_ivar
        on_param_error("formal argument cannot be an instance variable", location.slice)
      when :class_name, :module_name
        on_class_name_error("class/module name must be CONSTANT", location.slice)
      else
        on_parse_error(error.message)
      end
    end

    nil
  else
    result.value.accept(self)
  end
end

#visit_alias_global_variable_node(node) ⇒ Object

alias $foo $bar ^^^^^^^^^^^^^^^



599
600
601
602
603
604
605
# File 'lib/prism/translation/ripper.rb', line 599

def visit_alias_global_variable_node(node)
  new_name = visit_alias_global_variable_node_value(node.new_name)
  old_name = visit_alias_global_variable_node_value(node.old_name)

  bounds(node.location)
  on_var_alias(new_name, old_name)
end

#visit_alias_method_node(node) ⇒ Object

alias foo bar ^^^^^^^^^^^^^



589
590
591
592
593
594
595
# File 'lib/prism/translation/ripper.rb', line 589

def visit_alias_method_node(node)
  new_name = visit(node.new_name)
  old_name = visit(node.old_name)

  bounds(node.location)
  on_alias(new_name, old_name)
end

#visit_alternation_pattern_node(node) ⇒ Object

foo => bar | baz

^^^^^^^^^


623
624
625
626
627
628
629
# File 'lib/prism/translation/ripper.rb', line 623

def visit_alternation_pattern_node(node)
  left = visit_pattern_node(node.left)
  right = visit_pattern_node(node.right)

  bounds(node.location)
  on_binary(left, :|, right)
end

#visit_and_node(node) ⇒ Object

a and b ^^^^^^^



643
644
645
646
647
648
649
# File 'lib/prism/translation/ripper.rb', line 643

def visit_and_node(node)
  left = visit(node.left)
  right = visit(node.right)

  bounds(node.location)
  on_binary(left, node.operator.to_sym, right)
end

#visit_arguments_node(node) ⇒ Object

foo(bar)

^^^


834
835
836
837
# File 'lib/prism/translation/ripper.rb', line 834

def visit_arguments_node(node)
  arguments, _, _ = visit_call_node_arguments(node, nil, false)
  arguments
end

#visit_array_node(node) ⇒ Object

^^



653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
# File 'lib/prism/translation/ripper.rb', line 653

def visit_array_node(node)
  case (opening = node.opening)
  when /^%w/
    opening_loc = node.opening_loc
    bounds(opening_loc)
    on_qwords_beg(opening)

    elements = on_qwords_new
    previous = nil

    node.elements.each do |element|
      visit_words_sep(opening_loc, previous, element)

      bounds(element.location)
      elements = on_qwords_add(elements, on_tstring_content(element.content))

      previous = element
    end

    bounds(node.closing_loc)
    on_tstring_end(node.closing)
  when /^%i/
    opening_loc = node.opening_loc
    bounds(opening_loc)
    on_qsymbols_beg(opening)

    elements = on_qsymbols_new
    previous = nil

    node.elements.each do |element|
      visit_words_sep(opening_loc, previous, element)

      bounds(element.location)
      elements = on_qsymbols_add(elements, on_tstring_content(element.value))

      previous = element
    end

    bounds(node.closing_loc)
    on_tstring_end(node.closing)
  when /^%W/
    opening_loc = node.opening_loc
    bounds(opening_loc)
    on_words_beg(opening)

    elements = on_words_new
    previous = nil

    node.elements.each do |element|
      visit_words_sep(opening_loc, previous, element)

      bounds(element.location)
      elements =
        on_words_add(
          elements,
          if element.is_a?(StringNode)
            on_word_add(on_word_new, on_tstring_content(element.content))
          else
            element.parts.inject(on_word_new) do |word, part|
              word_part =
                if part.is_a?(StringNode)
                  bounds(part.location)
                  on_tstring_content(part.content)
                else
                  visit(part)
                end

              on_word_add(word, word_part)
            end
          end
        )

      previous = element
    end

    bounds(node.closing_loc)
    on_tstring_end(node.closing)
  when /^%I/
    opening_loc = node.opening_loc
    bounds(opening_loc)
    on_symbols_beg(opening)

    elements = on_symbols_new
    previous = nil

    node.elements.each do |element|
      visit_words_sep(opening_loc, previous, element)

      bounds(element.location)
      elements =
        on_symbols_add(
          elements,
          if element.is_a?(SymbolNode)
            on_word_add(on_word_new, on_tstring_content(element.value))
          else
            element.parts.inject(on_word_new) do |word, part|
              word_part =
                if part.is_a?(StringNode)
                  bounds(part.location)
                  on_tstring_content(part.content)
                else
                  visit(part)
                end

              on_word_add(word, word_part)
            end
          end
        )

      previous = element
    end

    bounds(node.closing_loc)
    on_tstring_end(node.closing)
  else
    bounds(node.opening_loc)
    on_lbracket(opening)

    elements = visit_arguments(node.elements) unless node.elements.empty?

    bounds(node.closing_loc)
    on_rbracket(node.closing)
  end

  bounds(node.location)
  on_array(elements)
end

#visit_array_pattern_node(node) ⇒ Object

foo => [bar]

^^^^^


813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
# File 'lib/prism/translation/ripper.rb', line 813

def visit_array_pattern_node(node)
  constant = visit(node.constant)
  requireds = visit_all(node.requireds) if node.requireds.any?
  rest =
    if (rest_node = node.rest).is_a?(SplatNode)
      if rest_node.expression.nil?
        bounds(rest_node.location)
        on_var_field(nil)
      else
        visit(rest_node.expression)
      end
    end

  posts = visit_all(node.posts) if node.posts.any?

  bounds(node.location)
  on_aryptn(constant, requireds, rest, posts)
end

#visit_assoc_node(node) ⇒ Object

{ a: 1 }

^^^^


841
842
843
844
845
846
847
# File 'lib/prism/translation/ripper.rb', line 841

def visit_assoc_node(node)
  key = visit(node.key)
  value = visit(node.value)

  bounds(node.location)
  on_assoc_new(key, value)
end

#visit_assoc_splat_node(node) ⇒ Object

def foo(**); bar(**); end

^^

{ **foo }

^^^^^


854
855
856
857
858
859
# File 'lib/prism/translation/ripper.rb', line 854

def visit_assoc_splat_node(node)
  value = visit(node.value)

  bounds(node.location)
  on_assoc_splat(value)
end

#visit_back_reference_read_node(node) ⇒ Object

$+ ^^



863
864
865
866
# File 'lib/prism/translation/ripper.rb', line 863

def visit_back_reference_read_node(node)
  bounds(node.location)
  on_backref(node.slice)
end

#visit_begin_node(node) ⇒ Object

begin end ^^^^^^^^^



870
871
872
873
874
875
# File 'lib/prism/translation/ripper.rb', line 870

def visit_begin_node(node)
  clauses = visit_begin_node_clauses(node.begin_keyword_loc, node, false)

  bounds(node.location)
  on_begin(clauses)
end

#visit_block_argument_node(node) ⇒ Object

foo(&bar)

^^^^


934
935
936
# File 'lib/prism/translation/ripper.rb', line 934

def visit_block_argument_node(node)
  visit(node.expression)
end

#visit_block_local_variable_node(node) ⇒ Object

foo { |; bar| }

^^^


940
941
942
943
# File 'lib/prism/translation/ripper.rb', line 940

def visit_block_local_variable_node(node)
  bounds(node.location)
  on_ident(node.name.to_s)
end

#visit_block_node(node) ⇒ Object

Visit a BlockNode.



946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
# File 'lib/prism/translation/ripper.rb', line 946

def visit_block_node(node)
  braces = node.opening == "{"
  parameters = visit(node.parameters)

  body =
    case node.body
    when nil
      bounds(node.location)
      stmts = on_stmts_add(on_stmts_new, on_void_stmt)

      bounds(node.location)
      braces ? stmts : on_bodystmt(stmts, nil, nil, nil)
    when StatementsNode
      stmts = node.body.body
      stmts.unshift(nil) if void_stmt?(node.parameters&.location || node.opening_loc, node.body.location, false)
      stmts = visit_statements_node_body(stmts)

      bounds(node.body.location)
      braces ? stmts : on_bodystmt(stmts, nil, nil, nil)
    when BeginNode
      visit_body_node(node.parameters&.location || node.opening_loc, node.body)
    else
      raise
    end

  if braces
    bounds(node.location)
    on_brace_block(parameters, body)
  else
    bounds(node.location)
    on_do_block(parameters, body)
  end
end

#visit_block_parameter_node(node) ⇒ Object

def foo(&bar); end

^^^^


982
983
984
985
986
987
988
989
990
991
992
993
# File 'lib/prism/translation/ripper.rb', line 982

def visit_block_parameter_node(node)
  if node.name_loc.nil?
    bounds(node.location)
    on_blockarg(nil)
  else
    bounds(node.name_loc)
    name = visit_token(node.name.to_s)

    bounds(node.location)
    on_blockarg(name)
  end
end

#visit_block_parameters_node(node) ⇒ Object

A block’s parameters.



996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
# File 'lib/prism/translation/ripper.rb', line 996

def visit_block_parameters_node(node)
  parameters =
    if node.parameters.nil?
      on_params(nil, nil, nil, nil, nil, nil, nil)
    else
      visit(node.parameters)
    end

  locals =
    if node.locals.any?
      visit_all(node.locals)
    else
      false
    end

  bounds(node.location)
  on_block_var(parameters, locals)
end

#visit_break_node(node) ⇒ Object

break ^^^^^

break foo ^^^^^^^^^



1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
# File 'lib/prism/translation/ripper.rb', line 1020

def visit_break_node(node)
  if node.arguments.nil?
    bounds(node.location)
    on_break(on_args_new)
  else
    arguments = visit(node.arguments)

    bounds(node.location)
    on_break(arguments)
  end
end

#visit_call_and_write_node(node) ⇒ Object

foo.bar &&= baz ^^^^^^^^^^^^^^^



1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
# File 'lib/prism/translation/ripper.rb', line 1251

def visit_call_and_write_node(node)
  receiver = visit(node.receiver)

  bounds(node.call_operator_loc)
  call_operator = visit_token(node.call_operator)

  bounds(node.message_loc)
  message = visit_token(node.message)

  bounds(node.location)
  target = on_field(receiver, call_operator, message)

  bounds(node.operator_loc)
  operator = on_op("&&=")
  value = visit_write_value(node.value)

  bounds(node.location)
  on_opassign(target, operator, value)
end

#visit_call_node(node) ⇒ Object

foo ^^^

foo.bar ^^^^^^^

foo.bar() {} ^^^^^^^^^^^^



1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
# File 'lib/prism/translation/ripper.rb', line 1040

def visit_call_node(node)
  if node.call_operator_loc.nil?
    case node.name
    when :[]
      receiver = visit(node.receiver)
      arguments, block, has_ripper_block = visit_call_node_arguments(node.arguments, node.block, trailing_comma?(node.arguments&.location || node.location, node.closing_loc))

      bounds(node.location)
      call = on_aref(receiver, arguments)

      if has_ripper_block
        bounds(node.location)
        on_method_add_block(call, block)
      else
        call
      end
    when :[]=
      receiver = visit(node.receiver)

      *arguments, last_argument = node.arguments.arguments
      arguments << node.block if !node.block.nil?

      arguments =
        if arguments.any?
          args = visit_arguments(arguments)

          if !node.block.nil?
            args
          else
            bounds(arguments.first.location)
            on_args_add_block(args, false)
          end
        end

      bounds(node.location)
      call = on_aref_field(receiver, arguments)
      value = visit_write_value(last_argument)

      bounds(last_argument.location)
      on_assign(call, value)
    when :-@, :+@, :~
      receiver = visit(node.receiver)

      bounds(node.location)
      on_unary(node.name, receiver)
    when :!
      if node.message == "not"
        receiver =
          if !node.receiver.is_a?(ParenthesesNode) || !node.receiver.body.nil?
            visit(node.receiver)
          end

        bounds(node.location)
        on_unary(:not, receiver)
      else
        receiver = visit(node.receiver)

        bounds(node.location)
        on_unary(:!, receiver)
      end
    when *BINARY_OPERATORS
      receiver = visit(node.receiver)
      value = visit(node.arguments.arguments.first)

      bounds(node.location)
      on_binary(receiver, node.name, value)
    else
      bounds(node.message_loc)
      message = visit_token(node.message, false)

      if node.variable_call?
        on_vcall(message)
      else
        arguments, block, has_ripper_block = visit_call_node_arguments(node.arguments, node.block, trailing_comma?(node.arguments&.location || node.location, node.closing_loc || node.location))
        call =
          if node.opening_loc.nil? && get_arguments_and_block(node.arguments, node.block).first.any?
            bounds(node.location)
            on_command(message, arguments)
          elsif !node.opening_loc.nil?
            bounds(node.location)
            on_method_add_arg(on_fcall(message), on_arg_paren(arguments))
          else
            bounds(node.location)
            on_method_add_arg(on_fcall(message), on_args_new)
          end

        if has_ripper_block
          bounds(node.block.location)
          on_method_add_block(call, block)
        else
          call
        end
      end
    end
  else
    receiver = visit(node.receiver)

    bounds(node.call_operator_loc)
    call_operator = visit_token(node.call_operator)

    message =
      if node.message_loc.nil?
        :call
      else
        bounds(node.message_loc)
        visit_token(node.message, false)
      end

    if node.name.end_with?("=") && !node.message.end_with?("=") && !node.arguments.nil? && node.block.nil?
      value = visit_write_value(node.arguments.arguments.first)

      bounds(node.location)
      on_assign(on_field(receiver, call_operator, message), value)
    else
      arguments, block, has_ripper_block = visit_call_node_arguments(node.arguments, node.block, trailing_comma?(node.arguments&.location || node.location, node.closing_loc || node.location))
      call =
        if node.opening_loc.nil?
          bounds(node.location)

          if node.arguments.nil? && !node.block.is_a?(BlockArgumentNode)
            on_call(receiver, call_operator, message)
          else
            on_command_call(receiver, call_operator, message, arguments)
          end
        else
          bounds(node.opening_loc)
          arguments = on_arg_paren(arguments)

          bounds(node.location)
          on_method_add_arg(on_call(receiver, call_operator, message), arguments)
        end

      if has_ripper_block
        bounds(node.block.location)
        on_method_add_block(call, block)
      else
        call
      end
    end
  end
end

#visit_call_operator_write_node(node) ⇒ Object

foo.bar += baz ^^^^^^^^^^^^^^^



1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
# File 'lib/prism/translation/ripper.rb', line 1229

def visit_call_operator_write_node(node)
  receiver = visit(node.receiver)

  bounds(node.call_operator_loc)
  call_operator = visit_token(node.call_operator)

  bounds(node.message_loc)
  message = visit_token(node.message)

  bounds(node.location)
  target = on_field(receiver, call_operator, message)

  bounds(node.binary_operator_loc)
  operator = on_op("#{node.binary_operator}=")
  value = visit_write_value(node.value)

  bounds(node.location)
  on_opassign(target, operator, value)
end

#visit_call_or_write_node(node) ⇒ Object

foo.bar ||= baz ^^^^^^^^^^^^^^^



1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
# File 'lib/prism/translation/ripper.rb', line 1273

def visit_call_or_write_node(node)
  receiver = visit(node.receiver)

  bounds(node.call_operator_loc)
  call_operator = visit_token(node.call_operator)

  bounds(node.message_loc)
  message = visit_token(node.message)

  bounds(node.location)
  target = on_field(receiver, call_operator, message)

  bounds(node.operator_loc)
  operator = on_op("||=")
  value = visit_write_value(node.value)

  bounds(node.location)
  on_opassign(target, operator, value)
end

#visit_call_target_node(node) ⇒ Object

foo.bar, = 1 ^^^^^^^



1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
# File 'lib/prism/translation/ripper.rb', line 1295

def visit_call_target_node(node)
  if node.call_operator == "::"
    receiver = visit(node.receiver)

    bounds(node.message_loc)
    message = visit_token(node.message)

    bounds(node.location)
    on_const_path_field(receiver, message)
  else
    receiver = visit(node.receiver)

    bounds(node.call_operator_loc)
    call_operator = visit_token(node.call_operator)

    bounds(node.message_loc)
    message = visit_token(node.message)

    bounds(node.location)
    on_field(receiver, call_operator, message)
  end
end

#visit_capture_pattern_node(node) ⇒ Object

foo => bar => baz

^^^^^^^^^^


1320
1321
1322
1323
1324
1325
1326
# File 'lib/prism/translation/ripper.rb', line 1320

def visit_capture_pattern_node(node)
  value = visit(node.value)
  target = visit(node.target)

  bounds(node.location)
  on_binary(value, :"=>", target)
end

#visit_case_match_node(node) ⇒ Object

case foo; in bar; end ^^^^^^^^^^^^^^^^^^^^^



1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
# File 'lib/prism/translation/ripper.rb', line 1343

def visit_case_match_node(node)
  predicate = visit(node.predicate)
  clauses =
    node.conditions.reverse_each.inject(visit(node.else_clause)) do |current, condition|
      on_in(*visit(condition), current)
    end

  bounds(node.location)
  on_case(predicate, clauses)
end

#visit_case_node(node) ⇒ Object

case foo; when bar; end ^^^^^^^^^^^^^^^^^^^^^^^



1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
# File 'lib/prism/translation/ripper.rb', line 1330

def visit_case_node(node)
  predicate = visit(node.predicate)
  clauses =
    node.conditions.reverse_each.inject(visit(node.else_clause)) do |current, condition|
      on_when(*visit(condition), current)
    end

  bounds(node.location)
  on_case(predicate, clauses)
end

#visit_class_node(node) ⇒ Object

class Foo; end ^^^^^^^^^^^^^^



1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
# File 'lib/prism/translation/ripper.rb', line 1356

def visit_class_node(node)
  constant_path =
    if node.constant_path.is_a?(ConstantReadNode)
      bounds(node.constant_path.location)
      on_const_ref(on_const(node.constant_path.name.to_s))
    else
      visit(node.constant_path)
    end

  superclass = visit(node.superclass)
  bodystmt = visit_body_node(node.superclass&.location || node.constant_path.location, node.body, node.superclass.nil?)

  bounds(node.location)
  on_class(constant_path, superclass, bodystmt)
end

#visit_class_variable_and_write_node(node) ⇒ Object

@@foo &&= bar ^^^^^^^^^^^^^



1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
# File 'lib/prism/translation/ripper.rb', line 1409

def visit_class_variable_and_write_node(node)
  bounds(node.name_loc)
  target = on_var_field(on_cvar(node.name.to_s))

  bounds(node.operator_loc)
  operator = on_op("&&=")
  value = visit_write_value(node.value)

  bounds(node.location)
  on_opassign(target, operator, value)
end

#visit_class_variable_operator_write_node(node) ⇒ Object

@@foo += bar ^^^^^^^^^^^^



1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
# File 'lib/prism/translation/ripper.rb', line 1395

def visit_class_variable_operator_write_node(node)
  bounds(node.name_loc)
  target = on_var_field(on_cvar(node.name.to_s))

  bounds(node.binary_operator_loc)
  operator = on_op("#{node.binary_operator}=")
  value = visit_write_value(node.value)

  bounds(node.location)
  on_opassign(target, operator, value)
end

#visit_class_variable_or_write_node(node) ⇒ Object

@@foo ||= bar ^^^^^^^^^^^^^



1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
# File 'lib/prism/translation/ripper.rb', line 1423

def visit_class_variable_or_write_node(node)
  bounds(node.name_loc)
  target = on_var_field(on_cvar(node.name.to_s))

  bounds(node.operator_loc)
  operator = on_op("||=")
  value = visit_write_value(node.value)

  bounds(node.location)
  on_opassign(target, operator, value)
end

#visit_class_variable_read_node(node) ⇒ Object

@@foo ^^^^^



1374
1375
1376
1377
# File 'lib/prism/translation/ripper.rb', line 1374

def visit_class_variable_read_node(node)
  bounds(node.location)
  on_var_ref(on_cvar(node.slice))
end

#visit_class_variable_target_node(node) ⇒ Object

@@foo, = bar ^^^^^



1437
1438
1439
1440
# File 'lib/prism/translation/ripper.rb', line 1437

def visit_class_variable_target_node(node)
  bounds(node.location)
  on_var_field(on_cvar(node.name.to_s))
end

#visit_class_variable_write_node(node) ⇒ Object

@@foo = 1 ^^^^^^^^^

@@foo, @@bar = 1 ^^^^^ ^^^^^



1384
1385
1386
1387
1388
1389
1390
1391
# File 'lib/prism/translation/ripper.rb', line 1384

def visit_class_variable_write_node(node)
  bounds(node.name_loc)
  target = on_var_field(on_cvar(node.name.to_s))
  value = visit_write_value(node.value)

  bounds(node.location)
  on_assign(target, value)
end

#visit_constant_and_write_node(node) ⇒ Object

Foo &&= bar ^^^^^^^^^^^^



1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
# File 'lib/prism/translation/ripper.rb', line 1479

def visit_constant_and_write_node(node)
  bounds(node.name_loc)
  target = on_var_field(on_const(node.name.to_s))

  bounds(node.operator_loc)
  operator = on_op("&&=")
  value = visit_write_value(node.value)

  bounds(node.location)
  on_opassign(target, operator, value)
end

#visit_constant_operator_write_node(node) ⇒ Object

Foo += bar ^^^^^^^^^^^



1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
# File 'lib/prism/translation/ripper.rb', line 1465

def visit_constant_operator_write_node(node)
  bounds(node.name_loc)
  target = on_var_field(on_const(node.name.to_s))

  bounds(node.binary_operator_loc)
  operator = on_op("#{node.binary_operator}=")
  value = visit_write_value(node.value)

  bounds(node.location)
  on_opassign(target, operator, value)
end

#visit_constant_or_write_node(node) ⇒ Object

Foo ||= bar ^^^^^^^^^^^^



1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
# File 'lib/prism/translation/ripper.rb', line 1493

def visit_constant_or_write_node(node)
  bounds(node.name_loc)
  target = on_var_field(on_const(node.name.to_s))

  bounds(node.operator_loc)
  operator = on_op("||=")
  value = visit_write_value(node.value)

  bounds(node.location)
  on_opassign(target, operator, value)
end

#visit_constant_path_and_write_node(node) ⇒ Object

Foo::Bar &&= baz ^^^^^^^^^^^^^^^^



1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
# File 'lib/prism/translation/ripper.rb', line 1580

def visit_constant_path_and_write_node(node)
  target = visit_constant_path_write_node_target(node.target)
  value = visit(node.value)

  bounds(node.operator_loc)
  operator = on_op("&&=")
  value = visit_write_value(node.value)

  bounds(node.location)
  on_opassign(target, operator, value)
end

#visit_constant_path_node(node) ⇒ Object

Foo::Bar ^^^^^^^^



1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
# File 'lib/prism/translation/ripper.rb', line 1514

def visit_constant_path_node(node)
  if node.parent.nil?
    bounds(node.name_loc)
    child = on_const(node.name.to_s)

    bounds(node.location)
    on_top_const_ref(child)
  else
    parent = visit(node.parent)

    bounds(node.name_loc)
    child = on_const(node.name.to_s)

    bounds(node.location)
    on_const_path_ref(parent, child)
  end
end

#visit_constant_path_operator_write_node(node) ⇒ Object

Foo::Bar += baz ^^^^^^^^^^^^^^^



1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
# File 'lib/prism/translation/ripper.rb', line 1566

def visit_constant_path_operator_write_node(node)
  target = visit_constant_path_write_node_target(node.target)
  value = visit(node.value)

  bounds(node.binary_operator_loc)
  operator = on_op("#{node.binary_operator}=")
  value = visit_write_value(node.value)

  bounds(node.location)
  on_opassign(target, operator, value)
end

#visit_constant_path_or_write_node(node) ⇒ Object

Foo::Bar ||= baz ^^^^^^^^^^^^^^^^



1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
# File 'lib/prism/translation/ripper.rb', line 1594

def visit_constant_path_or_write_node(node)
  target = visit_constant_path_write_node_target(node.target)
  value = visit(node.value)

  bounds(node.operator_loc)
  operator = on_op("||=")
  value = visit_write_value(node.value)

  bounds(node.location)
  on_opassign(target, operator, value)
end

#visit_constant_path_target_node(node) ⇒ Object

Foo::Bar, = baz ^^^^^^^^



1608
1609
1610
# File 'lib/prism/translation/ripper.rb', line 1608

def visit_constant_path_target_node(node)
  visit_constant_path_write_node_target(node)
end

#visit_constant_path_write_node(node) ⇒ Object

Foo::Bar = 1 ^^^^^^^^^^^^

Foo::Foo, Bar::Bar = 1 ^^^^^^^^ ^^^^^^^^



1537
1538
1539
1540
1541
1542
1543
# File 'lib/prism/translation/ripper.rb', line 1537

def visit_constant_path_write_node(node)
  target = visit_constant_path_write_node_target(node.target)
  value = visit_write_value(node.value)

  bounds(node.location)
  on_assign(target, value)
end

#visit_constant_read_node(node) ⇒ Object

Foo ^^^



1444
1445
1446
1447
# File 'lib/prism/translation/ripper.rb', line 1444

def visit_constant_read_node(node)
  bounds(node.location)
  on_var_ref(on_const(node.name.to_s))
end

#visit_constant_target_node(node) ⇒ Object

Foo, = bar ^^^



1507
1508
1509
1510
# File 'lib/prism/translation/ripper.rb', line 1507

def visit_constant_target_node(node)
  bounds(node.location)
  on_var_field(on_const(node.name.to_s))
end

#visit_constant_write_node(node) ⇒ Object

Foo = 1 ^^^^^^^

Foo, Bar = 1 ^^^ ^^^



1454
1455
1456
1457
1458
1459
1460
1461
# File 'lib/prism/translation/ripper.rb', line 1454

def visit_constant_write_node(node)
  bounds(node.name_loc)
  target = on_var_field(on_const(node.name.to_s))
  value = visit_write_value(node.value)

  bounds(node.location)
  on_assign(target, value)
end

#visit_def_node(node) ⇒ Object

def foo; end ^^^^^^^^^^^^

def self.foo; end ^^^^^^^^^^^^^^^^^



1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
# File 'lib/prism/translation/ripper.rb', line 1617

def visit_def_node(node)
  receiver = visit(node.receiver)
  operator =
    if !node.operator_loc.nil?
      bounds(node.operator_loc)
      visit_token(node.operator)
    end

  bounds(node.name_loc)
  name = visit_token(node.name_loc.slice)

  parameters =
    if node.parameters.nil?
      bounds(node.location)
      on_params(nil, nil, nil, nil, nil, nil, nil)
    else
      visit(node.parameters)
    end

  if !node.lparen_loc.nil?
    bounds(node.lparen_loc)
    parameters = on_paren(parameters)
  end

  bodystmt =
    if node.equal_loc.nil?
      visit_body_node(node.rparen_loc || node.end_keyword_loc, node.body)
    else
      body = visit(node.body.body.first)

      bounds(node.body.location)
      on_bodystmt(body, nil, nil, nil)
    end

  bounds(node.location)
  if receiver
    on_defs(receiver, operator, name, parameters, bodystmt)
  else
    on_def(name, parameters, bodystmt)
  end
end

#visit_defined_node(node) ⇒ Object

defined? a ^^^^^^^^^^

defined?(a) ^^^^^^^^^^^



1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
# File 'lib/prism/translation/ripper.rb', line 1664

def visit_defined_node(node)
  expression = visit(node.value)

  # Very weird circumstances here where something like:
  #
  #     defined?
  #     (1)
  #
  # gets parsed in Ruby as having only the `1` expression but in Ripper it
  # gets parsed as having a parentheses node. In this case we need to
  # synthesize that node to match Ripper's behavior.
  if node.lparen_loc && node.keyword_loc.join(node.lparen_loc).slice.include?("\n")
    bounds(node.lparen_loc.join(node.rparen_loc))
    expression = on_paren(on_stmts_add(on_stmts_new, expression))
  end

  bounds(node.location)
  on_defined(expression)
end

#visit_else_node(node) ⇒ Object

if foo then bar else baz end

^^^^^^^^^^^^


1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
# File 'lib/prism/translation/ripper.rb', line 1686

def visit_else_node(node)
  statements =
    if node.statements.nil?
      [nil]
    else
      body = node.statements.body
      body.unshift(nil) if void_stmt?(node.else_keyword_loc, node.statements.body[0].location, false)
      body
    end

  bounds(node.location)
  on_else(visit_statements_node_body(statements))
end

#visit_embedded_statements_node(node) ⇒ Object

“foo #bar”

^^^^^^


1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
# File 'lib/prism/translation/ripper.rb', line 1702

def visit_embedded_statements_node(node)
  bounds(node.opening_loc)
  on_embexpr_beg(node.opening)

  statements =
    if node.statements.nil?
      bounds(node.location)
      on_stmts_add(on_stmts_new, on_void_stmt)
    else
      visit(node.statements)
    end

  bounds(node.closing_loc)
  on_embexpr_end(node.closing)

  bounds(node.location)
  on_string_embexpr(statements)
end

#visit_embedded_variable_node(node) ⇒ Object

“foo #@bar”

^^^^^


1723
1724
1725
1726
1727
1728
1729
1730
1731
# File 'lib/prism/translation/ripper.rb', line 1723

def visit_embedded_variable_node(node)
  bounds(node.operator_loc)
  on_embvar(node.operator)

  variable = visit(node.variable)

  bounds(node.location)
  on_string_dvar(variable)
end

#visit_ensure_node(node) ⇒ Object

Visit an EnsureNode node.



1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
# File 'lib/prism/translation/ripper.rb', line 1734

def visit_ensure_node(node)
  statements =
    if node.statements.nil?
      [nil]
    else
      body = node.statements.body
      body.unshift(nil) if void_stmt?(node.ensure_keyword_loc, body[0].location, false)
      body
    end

  statements = visit_statements_node_body(statements)

  bounds(node.location)
  on_ensure(statements)
end

#visit_false_node(node) ⇒ Object

false ^^^^^



1752
1753
1754
1755
# File 'lib/prism/translation/ripper.rb', line 1752

def visit_false_node(node)
  bounds(node.location)
  on_var_ref(on_kw("false"))
end

#visit_find_pattern_node(node) ⇒ Object

foo => [*, bar, *]

^^^^^^^^^^^


1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
# File 'lib/prism/translation/ripper.rb', line 1759

def visit_find_pattern_node(node)
  constant = visit(node.constant)
  left =
    if node.left.expression.nil?
      bounds(node.left.location)
      on_var_field(nil)
    else
      visit(node.left.expression)
    end

  requireds = visit_all(node.requireds) if node.requireds.any?
  right =
    if node.right.expression.nil?
      bounds(node.right.location)
      on_var_field(nil)
    else
      visit(node.right.expression)
    end

  bounds(node.location)
  on_fndptn(constant, left, requireds, right)
end

#visit_flip_flop_node(node) ⇒ Object

if foo .. bar; end

^^^^^^^^^^


1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
# File 'lib/prism/translation/ripper.rb', line 1784

def visit_flip_flop_node(node)
  left = visit(node.left)
  right = visit(node.right)

  bounds(node.location)
  if node.exclude_end?
    on_dot3(left, right)
  else
    on_dot2(left, right)
  end
end

#visit_float_node(node) ⇒ Object

1.0 ^^^



1798
1799
1800
# File 'lib/prism/translation/ripper.rb', line 1798

def visit_float_node(node)
  visit_number_node(node) { |text| on_float(text) }
end

#visit_for_node(node) ⇒ Object

for foo in bar do end ^^^^^^^^^^^^^^^^^^^^^



1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
# File 'lib/prism/translation/ripper.rb', line 1804

def visit_for_node(node)
  index = visit(node.index)
  collection = visit(node.collection)
  statements =
    if node.statements.nil?
      bounds(node.location)
      on_stmts_add(on_stmts_new, on_void_stmt)
    else
      visit(node.statements)
    end

  bounds(node.location)
  on_for(index, collection, statements)
end

#visit_forwarding_arguments_node(node) ⇒ Object

def foo(…); bar(…); end

^^^


1821
1822
1823
1824
# File 'lib/prism/translation/ripper.rb', line 1821

def visit_forwarding_arguments_node(node)
  bounds(node.location)
  on_args_forward
end

#visit_forwarding_parameter_node(node) ⇒ Object

def foo(…); end

^^^


1828
1829
1830
1831
# File 'lib/prism/translation/ripper.rb', line 1828

def visit_forwarding_parameter_node(node)
  bounds(node.location)
  on_args_forward
end

#visit_forwarding_super_node(node) ⇒ Object

super ^^^^^

super {} ^^^^^^^^



1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
# File 'lib/prism/translation/ripper.rb', line 1838

def visit_forwarding_super_node(node)
  if node.block.nil?
    bounds(node.location)
    on_zsuper
  else
    block = visit(node.block)

    bounds(node.location)
    on_method_add_block(on_zsuper, block)
  end
end

#visit_global_variable_and_write_node(node) ⇒ Object

$foo &&= bar ^^^^^^^^^^^^



1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
# File 'lib/prism/translation/ripper.rb', line 1887

def visit_global_variable_and_write_node(node)
  bounds(node.name_loc)
  target = on_var_field(on_gvar(node.name.to_s))

  bounds(node.operator_loc)
  operator = on_op("&&=")
  value = visit_write_value(node.value)

  bounds(node.location)
  on_opassign(target, operator, value)
end

#visit_global_variable_operator_write_node(node) ⇒ Object

$foo += bar ^^^^^^^^^^^



1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
# File 'lib/prism/translation/ripper.rb', line 1873

def visit_global_variable_operator_write_node(node)
  bounds(node.name_loc)
  target = on_var_field(on_gvar(node.name.to_s))

  bounds(node.binary_operator_loc)
  operator = on_op("#{node.binary_operator}=")
  value = visit_write_value(node.value)

  bounds(node.location)
  on_opassign(target, operator, value)
end

#visit_global_variable_or_write_node(node) ⇒ Object

$foo ||= bar ^^^^^^^^^^^^



1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
# File 'lib/prism/translation/ripper.rb', line 1901

def visit_global_variable_or_write_node(node)
  bounds(node.name_loc)
  target = on_var_field(on_gvar(node.name.to_s))

  bounds(node.operator_loc)
  operator = on_op("||=")
  value = visit_write_value(node.value)

  bounds(node.location)
  on_opassign(target, operator, value)
end

#visit_global_variable_read_node(node) ⇒ Object

$foo ^^^^



1852
1853
1854
1855
# File 'lib/prism/translation/ripper.rb', line 1852

def visit_global_variable_read_node(node)
  bounds(node.location)
  on_var_ref(on_gvar(node.name.to_s))
end

#visit_global_variable_target_node(node) ⇒ Object

$foo, = bar ^^^^



1915
1916
1917
1918
# File 'lib/prism/translation/ripper.rb', line 1915

def visit_global_variable_target_node(node)
  bounds(node.location)
  on_var_field(on_gvar(node.name.to_s))
end

#visit_global_variable_write_node(node) ⇒ Object

$foo = 1 ^^^^^^^^

$foo, $bar = 1 ^^^^ ^^^^



1862
1863
1864
1865
1866
1867
1868
1869
# File 'lib/prism/translation/ripper.rb', line 1862

def visit_global_variable_write_node(node)
  bounds(node.name_loc)
  target = on_var_field(on_gvar(node.name.to_s))
  value = visit_write_value(node.value)

  bounds(node.location)
  on_assign(target, value)
end

#visit_hash_node(node) ⇒ Object

{} ^^



1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
# File 'lib/prism/translation/ripper.rb', line 1922

def visit_hash_node(node)
  elements =
    if node.elements.any?
      args = visit_all(node.elements)

      bounds(node.elements.first.location)
      on_assoclist_from_args(args)
    end

  bounds(node.location)
  on_hash(elements)
end

#visit_hash_pattern_node(node) ⇒ Object

foo => {}

^^


1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
# File 'lib/prism/translation/ripper.rb', line 1937

def visit_hash_pattern_node(node)
  constant = visit(node.constant)
  elements =
    if node.elements.any? || !node.rest.nil?
      node.elements.map do |element|
        [
          if (key = element.key).opening_loc.nil?
            visit(key)
          else
            bounds(key.value_loc)
            if (value = key.value).empty?
              on_string_content
            else
              on_string_add(on_string_content, on_tstring_content(value))
            end
          end,
          visit(element.value)
        ]
      end
    end

  rest =
    case node.rest
    when AssocSplatNode
      visit(node.rest.value)
    when NoKeywordsParameterNode
      bounds(node.rest.location)
      on_var_field(visit(node.rest))
    end

  bounds(node.location)
  on_hshptn(constant, elements, rest)
end

#visit_if_node(node) ⇒ Object

if foo then bar end ^^^^^^^^^^^^^^^^^^^

bar if foo ^^^^^^^^^^

foo ? bar : baz ^^^^^^^^^^^^^^^



1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
# File 'lib/prism/translation/ripper.rb', line 1979

def visit_if_node(node)
  if node.then_keyword == "?"
    predicate = visit(node.predicate)
    truthy = visit(node.statements.body.first)
    falsy = visit(node.subsequent.statements.body.first)

    bounds(node.location)
    on_ifop(predicate, truthy, falsy)
  elsif node.statements.nil? || (node.predicate.location.start_offset < node.statements.location.start_offset)
    predicate = visit(node.predicate)
    statements =
      if node.statements.nil?
        bounds(node.location)
        on_stmts_add(on_stmts_new, on_void_stmt)
      else
        visit(node.statements)
      end
    subsequent = visit(node.subsequent)

    bounds(node.location)
    if node.if_keyword == "if"
      on_if(predicate, statements, subsequent)
    else
      on_elsif(predicate, statements, subsequent)
    end
  else
    statements = visit(node.statements.body.first)
    predicate = visit(node.predicate)

    bounds(node.location)
    on_if_mod(predicate, statements)
  end
end

#visit_imaginary_node(node) ⇒ Object

1i ^^



2015
2016
2017
# File 'lib/prism/translation/ripper.rb', line 2015

def visit_imaginary_node(node)
  visit_number_node(node) { |text| on_imaginary(text) }
end

#visit_implicit_node(node) ⇒ Object

{ foo: }

^^^^


2021
2022
# File 'lib/prism/translation/ripper.rb', line 2021

def visit_implicit_node(node)
end

#visit_implicit_rest_node(node) ⇒ Object

foo { |bar,| }

^


2026
2027
2028
2029
# File 'lib/prism/translation/ripper.rb', line 2026

def visit_implicit_rest_node(node)
  bounds(node.location)
  on_excessed_comma
end

#visit_in_node(node) ⇒ Object

case foo; in bar; end ^^^^^^^^^^^^^^^^^^^^^



2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
# File 'lib/prism/translation/ripper.rb', line 2033

def visit_in_node(node)
  # This is a special case where we're not going to call on_in directly
  # because we don't have access to the subsequent. Instead, we'll return
  # the component parts and let the parent node handle it.
  pattern = visit_pattern_node(node.pattern)
  statements =
    if node.statements.nil?
      bounds(node.location)
      on_stmts_add(on_stmts_new, on_void_stmt)
    else
      visit(node.statements)
    end

  [pattern, statements]
end

#visit_index_and_write_node(node) ⇒ Object

foo &&= baz ^^^^^^^^^^^^^^^^



2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
# File 'lib/prism/translation/ripper.rb', line 2068

def visit_index_and_write_node(node)
  receiver = visit(node.receiver)
  arguments, _, _ = visit_call_node_arguments(node.arguments, node.block, trailing_comma?(node.arguments&.location || node.location, node.closing_loc))

  bounds(node.location)
  target = on_aref_field(receiver, arguments)

  bounds(node.operator_loc)
  operator = on_op("&&=")
  value = visit_write_value(node.value)

  bounds(node.location)
  on_opassign(target, operator, value)
end

#visit_index_operator_write_node(node) ⇒ Object

foo += baz ^^^^^^^^^^^^^^^



2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
# File 'lib/prism/translation/ripper.rb', line 2051

def visit_index_operator_write_node(node)
  receiver = visit(node.receiver)
  arguments, _, _ = visit_call_node_arguments(node.arguments, node.block, trailing_comma?(node.arguments&.location || node.location, node.closing_loc))

  bounds(node.location)
  target = on_aref_field(receiver, arguments)

  bounds(node.binary_operator_loc)
  operator = on_op("#{node.binary_operator}=")
  value = visit_write_value(node.value)

  bounds(node.location)
  on_opassign(target, operator, value)
end

#visit_index_or_write_node(node) ⇒ Object

foo ||= baz ^^^^^^^^^^^^^^^^



2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
# File 'lib/prism/translation/ripper.rb', line 2085

def visit_index_or_write_node(node)
  receiver = visit(node.receiver)
  arguments, _, _ = visit_call_node_arguments(node.arguments, node.block, trailing_comma?(node.arguments&.location || node.location, node.closing_loc))

  bounds(node.location)
  target = on_aref_field(receiver, arguments)

  bounds(node.operator_loc)
  operator = on_op("||=")
  value = visit_write_value(node.value)

  bounds(node.location)
  on_opassign(target, operator, value)
end

#visit_index_target_node(node) ⇒ Object

foo, = 1 ^^^^^^^^



2102
2103
2104
2105
2106
2107
2108
# File 'lib/prism/translation/ripper.rb', line 2102

def visit_index_target_node(node)
  receiver = visit(node.receiver)
  arguments, _, _ = visit_call_node_arguments(node.arguments, node.block, trailing_comma?(node.arguments&.location || node.location, node.closing_loc))

  bounds(node.location)
  on_aref_field(receiver, arguments)
end

#visit_instance_variable_and_write_node(node) ⇒ Object

^^^^^^^^^^^^



2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
# File 'lib/prism/translation/ripper.rb', line 2144

def visit_instance_variable_and_write_node(node)
  bounds(node.name_loc)
  target = on_var_field(on_ivar(node.name.to_s))

  bounds(node.operator_loc)
  operator = on_op("&&=")
  value = visit_write_value(node.value)

  bounds(node.location)
  on_opassign(target, operator, value)
end

#visit_instance_variable_operator_write_node(node) ⇒ Object

^^^^^^^^^^^



2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
# File 'lib/prism/translation/ripper.rb', line 2130

def visit_instance_variable_operator_write_node(node)
  bounds(node.name_loc)
  target = on_var_field(on_ivar(node.name.to_s))

  bounds(node.binary_operator_loc)
  operator = on_op("#{node.binary_operator}=")
  value = visit_write_value(node.value)

  bounds(node.location)
  on_opassign(target, operator, value)
end

#visit_instance_variable_or_write_node(node) ⇒ Object

^^^^^^^^^^^^



2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
# File 'lib/prism/translation/ripper.rb', line 2158

def visit_instance_variable_or_write_node(node)
  bounds(node.name_loc)
  target = on_var_field(on_ivar(node.name.to_s))

  bounds(node.operator_loc)
  operator = on_op("||=")
  value = visit_write_value(node.value)

  bounds(node.location)
  on_opassign(target, operator, value)
end

#visit_instance_variable_read_node(node) ⇒ Object

^^^^



2112
2113
2114
2115
# File 'lib/prism/translation/ripper.rb', line 2112

def visit_instance_variable_read_node(node)
  bounds(node.location)
  on_var_ref(on_ivar(node.name.to_s))
end

#visit_instance_variable_target_node(node) ⇒ Object

@foo, = bar ^^^^



2172
2173
2174
2175
# File 'lib/prism/translation/ripper.rb', line 2172

def visit_instance_variable_target_node(node)
  bounds(node.location)
  on_var_field(on_ivar(node.name.to_s))
end

#visit_instance_variable_write_node(node) ⇒ Object

^^^^^^^^



2119
2120
2121
2122
2123
2124
2125
2126
# File 'lib/prism/translation/ripper.rb', line 2119

def visit_instance_variable_write_node(node)
  bounds(node.name_loc)
  target = on_var_field(on_ivar(node.name.to_s))
  value = visit_write_value(node.value)

  bounds(node.location)
  on_assign(target, value)
end

#visit_integer_node(node) ⇒ Object

1 ^



2179
2180
2181
# File 'lib/prism/translation/ripper.rb', line 2179

def visit_integer_node(node)
  visit_number_node(node) { |text| on_int(text) }
end

#visit_interpolated_match_last_line_node(node) ⇒ Object

if /foo #bar/ then end

^^^^^^^^^^^^


2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
# File 'lib/prism/translation/ripper.rb', line 2185

def visit_interpolated_match_last_line_node(node)
  bounds(node.opening_loc)
  on_regexp_beg(node.opening)

  bounds(node.parts.first.location)
  parts =
    node.parts.inject(on_regexp_new) do |content, part|
      on_regexp_add(content, visit_string_content(part))
    end

  bounds(node.closing_loc)
  closing = on_regexp_end(node.closing)

  bounds(node.location)
  on_regexp_literal(parts, closing)
end

#visit_interpolated_regular_expression_node(node) ⇒ Object

/foo #bar/ ^^^^^^^^^^^^



2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
# File 'lib/prism/translation/ripper.rb', line 2204

def visit_interpolated_regular_expression_node(node)
  bounds(node.opening_loc)
  on_regexp_beg(node.opening)

  bounds(node.parts.first.location)
  parts =
    node.parts.inject(on_regexp_new) do |content, part|
      on_regexp_add(content, visit_string_content(part))
    end

  bounds(node.closing_loc)
  closing = on_regexp_end(node.closing)

  bounds(node.location)
  on_regexp_literal(parts, closing)
end

#visit_interpolated_string_node(node) ⇒ Object

“foo #bar” ^^^^^^^^^^^^



2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
# File 'lib/prism/translation/ripper.rb', line 2223

def visit_interpolated_string_node(node)
  if node.opening&.start_with?("<<~")
    heredoc = visit_heredoc_string_node(node)

    bounds(node.location)
    on_string_literal(heredoc)
  elsif !node.heredoc? && node.parts.length > 1 && node.parts.any? { |part| (part.is_a?(StringNode) || part.is_a?(InterpolatedStringNode)) && !part.opening_loc.nil? }
    first, *rest = node.parts
    rest.inject(visit(first)) do |content, part|
      concat = visit(part)

      bounds(part.location)
      on_string_concat(content, concat)
    end
  else
    bounds(node.parts.first.location)
    parts =
      node.parts.inject(on_string_content) do |content, part|
        on_string_add(content, visit_string_content(part))
      end

    bounds(node.location)
    on_string_literal(parts)
  end
end

#visit_interpolated_symbol_node(node) ⇒ Object

:“foo #bar” ^^^^^^^^^^^^^



2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
# File 'lib/prism/translation/ripper.rb', line 2251

def visit_interpolated_symbol_node(node)
  bounds(node.parts.first.location)
  parts =
    node.parts.inject(on_string_content) do |content, part|
      on_string_add(content, visit_string_content(part))
    end

  bounds(node.location)
  on_dyna_symbol(parts)
end

#visit_interpolated_x_string_node(node) ⇒ Object

‘foo #bar` ^^^^^^^^^^^^



2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
# File 'lib/prism/translation/ripper.rb', line 2264

def visit_interpolated_x_string_node(node)
  if node.opening.start_with?("<<~")
    heredoc = visit_heredoc_x_string_node(node)

    bounds(node.location)
    on_xstring_literal(heredoc)
  else
    bounds(node.parts.first.location)
    parts =
      node.parts.inject(on_xstring_new) do |content, part|
        on_xstring_add(content, visit_string_content(part))
      end

    bounds(node.location)
    on_xstring_literal(parts)
  end
end

#visit_it_local_variable_read_node(node) ⇒ Object

-> { it }

^^


2294
2295
2296
2297
# File 'lib/prism/translation/ripper.rb', line 2294

def visit_it_local_variable_read_node(node)
  bounds(node.location)
  on_vcall(on_ident(node.slice))
end

#visit_it_parameters_node(node) ⇒ Object

-> { it } ^^^^^^^^^



2301
2302
# File 'lib/prism/translation/ripper.rb', line 2301

def visit_it_parameters_node(node)
end

#visit_keyword_hash_node(node) ⇒ Object

foo(bar: baz)

^^^^^^^^


2306
2307
2308
2309
2310
2311
# File 'lib/prism/translation/ripper.rb', line 2306

def visit_keyword_hash_node(node)
  elements = visit_all(node.elements)

  bounds(node.location)
  on_bare_assoc_hash(elements)
end

#visit_keyword_rest_parameter_node(node) ⇒ Object

def foo(**bar); end

^^^^^

def foo(**); end

^^


2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
# File 'lib/prism/translation/ripper.rb', line 2318

def visit_keyword_rest_parameter_node(node)
  if node.name_loc.nil?
    bounds(node.location)
    on_kwrest_param(nil)
  else
    bounds(node.name_loc)
    name = on_ident(node.name.to_s)

    bounds(node.location)
    on_kwrest_param(name)
  end
end

#visit_lambda_node(node) ⇒ Object

-> {}



2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
# File 'lib/prism/translation/ripper.rb', line 2332

def visit_lambda_node(node)
  bounds(node.operator_loc)
  on_tlambda(node.operator)

  parameters =
    if node.parameters.is_a?(BlockParametersNode)
      # Ripper does not track block-locals within lambdas, so we skip
      # directly to the parameters here.
      params =
        if node.parameters.parameters.nil?
          bounds(node.location)
          on_params(nil, nil, nil, nil, nil, nil, nil)
        else
          visit(node.parameters.parameters)
        end

      if node.parameters.opening_loc.nil?
        params
      else
        bounds(node.parameters.opening_loc)
        on_paren(params)
      end
    else
      bounds(node.location)
      on_params(nil, nil, nil, nil, nil, nil, nil)
    end

  braces = node.opening == "{"
  if braces
    bounds(node.opening_loc)
    on_tlambeg(node.opening)
  end

  body =
    case node.body
    when nil
      bounds(node.location)
      stmts = on_stmts_add(on_stmts_new, on_void_stmt)

      bounds(node.location)
      braces ? stmts : on_bodystmt(stmts, nil, nil, nil)
    when StatementsNode
      stmts = node.body.body
      stmts.unshift(nil) if void_stmt?(node.parameters&.location || node.opening_loc, node.body.location, false)
      stmts = visit_statements_node_body(stmts)

      bounds(node.body.location)
      braces ? stmts : on_bodystmt(stmts, nil, nil, nil)
    when BeginNode
      visit_body_node(node.opening_loc, node.body)
    else
      raise
    end

  bounds(node.location)
  on_lambda(parameters, body)
end

#visit_local_variable_and_write_node(node) ⇒ Object

foo &&= bar ^^^^^^^^^^^



2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
# File 'lib/prism/translation/ripper.rb', line 2424

def visit_local_variable_and_write_node(node)
  bounds(node.name_loc)
  target = on_var_field(on_ident(node.name_loc.slice))

  bounds(node.operator_loc)
  operator = on_op("&&=")
  value = visit_write_value(node.value)

  bounds(node.location)
  on_opassign(target, operator, value)
end

#visit_local_variable_operator_write_node(node) ⇒ Object

foo += bar ^^^^^^^^^^



2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
# File 'lib/prism/translation/ripper.rb', line 2410

def visit_local_variable_operator_write_node(node)
  bounds(node.name_loc)
  target = on_var_field(on_ident(node.name_loc.slice))

  bounds(node.binary_operator_loc)
  operator = on_op("#{node.binary_operator}=")
  value = visit_write_value(node.value)

  bounds(node.location)
  on_opassign(target, operator, value)
end

#visit_local_variable_or_write_node(node) ⇒ Object

foo ||= bar ^^^^^^^^^^^



2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
# File 'lib/prism/translation/ripper.rb', line 2438

def visit_local_variable_or_write_node(node)
  bounds(node.name_loc)
  target = on_var_field(on_ident(node.name_loc.slice))

  bounds(node.operator_loc)
  operator = on_op("||=")
  value = visit_write_value(node.value)

  bounds(node.location)
  on_opassign(target, operator, value)
end

#visit_local_variable_read_node(node) ⇒ Object

foo ^^^



2392
2393
2394
2395
# File 'lib/prism/translation/ripper.rb', line 2392

def visit_local_variable_read_node(node)
  bounds(node.location)
  on_var_ref(on_ident(node.slice))
end

#visit_local_variable_target_node(node) ⇒ Object

foo, = bar ^^^



2452
2453
2454
2455
# File 'lib/prism/translation/ripper.rb', line 2452

def visit_local_variable_target_node(node)
  bounds(node.location)
  on_var_field(on_ident(node.name.to_s))
end

#visit_local_variable_write_node(node) ⇒ Object

foo = 1 ^^^^^^^



2399
2400
2401
2402
2403
2404
2405
2406
# File 'lib/prism/translation/ripper.rb', line 2399

def visit_local_variable_write_node(node)
  bounds(node.name_loc)
  target = on_var_field(on_ident(node.name_loc.slice))
  value = visit_write_value(node.value)

  bounds(node.location)
  on_assign(target, value)
end

#visit_match_last_line_node(node) ⇒ Object

if /foo/ then end

^^^^^


2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
# File 'lib/prism/translation/ripper.rb', line 2459

def visit_match_last_line_node(node)
  bounds(node.opening_loc)
  on_regexp_beg(node.opening)

  bounds(node.content_loc)
  tstring_content = on_tstring_content(node.content)

  bounds(node.closing_loc)
  closing = on_regexp_end(node.closing)

  on_regexp_literal(on_regexp_add(on_regexp_new, tstring_content), closing)
end

#visit_match_predicate_node(node) ⇒ Object

foo in bar ^^^^^^^^^^



2474
2475
2476
2477
2478
2479
# File 'lib/prism/translation/ripper.rb', line 2474

def visit_match_predicate_node(node)
  value = visit(node.value)
  pattern = on_in(visit_pattern_node(node.pattern), nil, nil)

  on_case(value, pattern)
end

#visit_match_required_node(node) ⇒ Object

foo => bar ^^^^^^^^^^



2483
2484
2485
2486
2487
2488
# File 'lib/prism/translation/ripper.rb', line 2483

def visit_match_required_node(node)
  value = visit(node.value)
  pattern = on_in(visit_pattern_node(node.pattern), nil, nil)

  on_case(value, pattern)
end

#visit_match_write_node(node) ⇒ Object

/(?<foo>foo)/ =~ bar ^^^^^^^^^^^^^^^^^^^^



2492
2493
2494
# File 'lib/prism/translation/ripper.rb', line 2492

def visit_match_write_node(node)
  visit(node.call)
end

#visit_missing_node(node) ⇒ Object

A node that is missing from the syntax tree. This is only used in the case of a syntax error.



2498
2499
2500
# File 'lib/prism/translation/ripper.rb', line 2498

def visit_missing_node(node)
  raise "Cannot visit missing nodes directly."
end

#visit_module_node(node) ⇒ Object

module Foo; end ^^^^^^^^^^^^^^^



2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
# File 'lib/prism/translation/ripper.rb', line 2504

def visit_module_node(node)
  constant_path =
    if node.constant_path.is_a?(ConstantReadNode)
      bounds(node.constant_path.location)
      on_const_ref(on_const(node.constant_path.name.to_s))
    else
      visit(node.constant_path)
    end

  bodystmt = visit_body_node(node.constant_path.location, node.body, true)

  bounds(node.location)
  on_module(constant_path, bodystmt)
end

#visit_multi_target_node(node) ⇒ Object

(foo, bar), bar = qux ^^^^^^^^^^



2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
# File 'lib/prism/translation/ripper.rb', line 2521

def visit_multi_target_node(node)
  bounds(node.location)
  targets = visit_multi_target_node_targets(node.lefts, node.rest, node.rights, true)

  if node.lparen_loc.nil?
    targets
  else
    bounds(node.lparen_loc)
    on_mlhs_paren(targets)
  end
end

#visit_multi_write_node(node) ⇒ Object

foo, bar = baz ^^^^^^^^^^^^^^



2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
# File 'lib/prism/translation/ripper.rb', line 2575

def visit_multi_write_node(node)
  bounds(node.location)
  targets = visit_multi_target_node_targets(node.lefts, node.rest, node.rights, true)

  unless node.lparen_loc.nil?
    bounds(node.lparen_loc)
    targets = on_mlhs_paren(targets)
  end

  value = visit_write_value(node.value)

  bounds(node.location)
  on_massign(targets, value)
end

#visit_next_node(node) ⇒ Object

next ^^^^

next foo ^^^^^^^^



2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
# File 'lib/prism/translation/ripper.rb', line 2595

def visit_next_node(node)
  if node.arguments.nil?
    bounds(node.location)
    on_next(on_args_new)
  else
    arguments = visit(node.arguments)

    bounds(node.location)
    on_next(arguments)
  end
end

#visit_nil_node(node) ⇒ Object

nil ^^^



2609
2610
2611
2612
# File 'lib/prism/translation/ripper.rb', line 2609

def visit_nil_node(node)
  bounds(node.location)
  on_var_ref(on_kw("nil"))
end

#visit_no_keywords_parameter_node(node) ⇒ Object

def foo(**nil); end

^^^^^


2616
2617
2618
2619
2620
2621
# File 'lib/prism/translation/ripper.rb', line 2616

def visit_no_keywords_parameter_node(node)
  bounds(node.location)
  on_nokw_param(nil)

  :nil
end

#visit_numbered_parameters_node(node) ⇒ Object

-> { _1 + _2 } ^^^^^^^^^^^^^^



2625
2626
# File 'lib/prism/translation/ripper.rb', line 2625

def visit_numbered_parameters_node(node)
end

#visit_numbered_reference_read_node(node) ⇒ Object

$1 ^^



2630
2631
2632
2633
# File 'lib/prism/translation/ripper.rb', line 2630

def visit_numbered_reference_read_node(node)
  bounds(node.location)
  on_backref(node.slice)
end

#visit_optional_keyword_parameter_node(node) ⇒ Object

def foo(bar: baz); end

^^^^^^^^


2637
2638
2639
2640
2641
2642
2643
# File 'lib/prism/translation/ripper.rb', line 2637

def visit_optional_keyword_parameter_node(node)
  bounds(node.name_loc)
  name = on_label("#{node.name}:")
  value = visit(node.value)

  [name, value]
end

#visit_optional_parameter_node(node) ⇒ Object

def foo(bar = 1); end

^^^^^^^


2647
2648
2649
2650
2651
2652
2653
# File 'lib/prism/translation/ripper.rb', line 2647

def visit_optional_parameter_node(node)
  bounds(node.name_loc)
  name = visit_token(node.name.to_s)
  value = visit(node.value)

  [name, value]
end

#visit_or_node(node) ⇒ Object

a or b ^^^^^^



2657
2658
2659
2660
2661
2662
2663
# File 'lib/prism/translation/ripper.rb', line 2657

def visit_or_node(node)
  left = visit(node.left)
  right = visit(node.right)

  bounds(node.location)
  on_binary(left, node.operator.to_sym, right)
end

#visit_parameters_node(node) ⇒ Object

def foo(bar, *baz); end

^^^^^^^^^


2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
# File 'lib/prism/translation/ripper.rb', line 2667

def visit_parameters_node(node)
  requireds = node.requireds.map { |required| required.is_a?(MultiTargetNode) ? visit_destructured_parameter_node(required) : visit(required) } if node.requireds.any?
  optionals = visit_all(node.optionals) if node.optionals.any?
  rest = visit(node.rest)
  posts = node.posts.map { |post| post.is_a?(MultiTargetNode) ? visit_destructured_parameter_node(post) : visit(post) } if node.posts.any?
  keywords = visit_all(node.keywords) if node.keywords.any?
  keyword_rest = visit(node.keyword_rest)
  block = visit(node.block)

  bounds(node.location)
  on_params(requireds, optionals, rest, posts, keywords, keyword_rest, block)
end

#visit_parentheses_node(node) ⇒ Object

() ^^

(1) ^^^



2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
# File 'lib/prism/translation/ripper.rb', line 2694

def visit_parentheses_node(node)
  body =
    if node.body.nil?
      on_stmts_add(on_stmts_new, on_void_stmt)
    else
      visit(node.body)
    end

  bounds(node.location)
  on_paren(body)
end

#visit_pinned_expression_node(node) ⇒ Object

foo => ^(bar)

^^^^^^


2708
2709
2710
2711
2712
2713
# File 'lib/prism/translation/ripper.rb', line 2708

def visit_pinned_expression_node(node)
  expression = visit(node.expression)

  bounds(node.location)
  on_begin(expression)
end

#visit_pinned_variable_node(node) ⇒ Object

foo = 1 and bar => ^foo

^^^^


2717
2718
2719
# File 'lib/prism/translation/ripper.rb', line 2717

def visit_pinned_variable_node(node)
  visit(node.variable)
end

#visit_post_execution_node(node) ⇒ Object

END {} ^^^^^^



2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
# File 'lib/prism/translation/ripper.rb', line 2723

def visit_post_execution_node(node)
  statements =
    if node.statements.nil?
      bounds(node.location)
      on_stmts_add(on_stmts_new, on_void_stmt)
    else
      visit(node.statements)
    end

  bounds(node.location)
  on_END(statements)
end

#visit_pre_execution_node(node) ⇒ Object

BEGIN {} ^^^^^^^^



2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
# File 'lib/prism/translation/ripper.rb', line 2738

def visit_pre_execution_node(node)
  statements =
    if node.statements.nil?
      bounds(node.location)
      on_stmts_add(on_stmts_new, on_void_stmt)
    else
      visit(node.statements)
    end

  bounds(node.location)
  on_BEGIN(statements)
end

#visit_program_node(node) ⇒ Object

The top-level program node.



2752
2753
2754
2755
2756
2757
2758
2759
# File 'lib/prism/translation/ripper.rb', line 2752

def visit_program_node(node)
  body = node.statements.body
  body << nil if body.empty?
  statements = visit_statements_node_body(body)

  bounds(node.location)
  on_program(statements)
end

#visit_range_node(node) ⇒ Object

0..5 ^^^^



2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
# File 'lib/prism/translation/ripper.rb', line 2763

def visit_range_node(node)
  left = visit(node.left)
  right = visit(node.right)

  bounds(node.location)
  if node.exclude_end?
    on_dot3(left, right)
  else
    on_dot2(left, right)
  end
end

#visit_rational_node(node) ⇒ Object

1r ^^



2777
2778
2779
# File 'lib/prism/translation/ripper.rb', line 2777

def visit_rational_node(node)
  visit_number_node(node) { |text| on_rational(text) }
end

#visit_redo_node(node) ⇒ Object

redo ^^^^



2783
2784
2785
2786
# File 'lib/prism/translation/ripper.rb', line 2783

def visit_redo_node(node)
  bounds(node.location)
  on_redo
end

#visit_regular_expression_node(node) ⇒ Object

/foo/ ^^^^^



2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
# File 'lib/prism/translation/ripper.rb', line 2790

def visit_regular_expression_node(node)
  bounds(node.opening_loc)
  on_regexp_beg(node.opening)

  if node.content.empty?
    bounds(node.closing_loc)
    closing = on_regexp_end(node.closing)

    on_regexp_literal(on_regexp_new, closing)
  else
    bounds(node.content_loc)
    tstring_content = on_tstring_content(node.content)

    bounds(node.closing_loc)
    closing = on_regexp_end(node.closing)

    on_regexp_literal(on_regexp_add(on_regexp_new, tstring_content), closing)
  end
end

#visit_required_keyword_parameter_node(node) ⇒ Object

def foo(bar:); end

^^^^


2812
2813
2814
2815
# File 'lib/prism/translation/ripper.rb', line 2812

def visit_required_keyword_parameter_node(node)
  bounds(node.name_loc)
  [on_label("#{node.name}:"), false]
end

#visit_required_parameter_node(node) ⇒ Object

def foo(bar); end

^^^


2819
2820
2821
2822
# File 'lib/prism/translation/ripper.rb', line 2819

def visit_required_parameter_node(node)
  bounds(node.location)
  on_ident(node.name.to_s)
end

#visit_rescue_modifier_node(node) ⇒ Object

foo rescue bar ^^^^^^^^^^^^^^



2826
2827
2828
2829
2830
2831
2832
# File 'lib/prism/translation/ripper.rb', line 2826

def visit_rescue_modifier_node(node)
  expression = visit_write_value(node.expression)
  rescue_expression = visit(node.rescue_expression)

  bounds(node.location)
  on_rescue_mod(expression, rescue_expression)
end

#visit_rescue_node(node) ⇒ Object

begin; rescue; end

^^^^^^^


2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
# File 'lib/prism/translation/ripper.rb', line 2836

def visit_rescue_node(node)
  exceptions =
    case node.exceptions.length
    when 0
      nil
    when 1
      if (exception = node.exceptions.first).is_a?(SplatNode)
        bounds(exception.location)
        on_mrhs_add_star(on_mrhs_new, visit(exception))
      else
        [visit(node.exceptions.first)]
      end
    else
      bounds(node.location)
      length = node.exceptions.length

      node.exceptions.each_with_index.inject(on_args_new) do |mrhs, (exception, index)|
        arg = visit(exception)

        bounds(exception.location)
        mrhs = on_mrhs_new_from_args(mrhs) if index == length - 1

        if exception.is_a?(SplatNode)
          if index == length - 1
            on_mrhs_add_star(mrhs, arg)
          else
            on_args_add_star(mrhs, arg)
          end
        else
          if index == length - 1
            on_mrhs_add(mrhs, arg)
          else
            on_args_add(mrhs, arg)
          end
        end
      end
    end

  reference = visit(node.reference)
  statements =
    if node.statements.nil?
      bounds(node.location)
      on_stmts_add(on_stmts_new, on_void_stmt)
    else
      visit(node.statements)
    end

  subsequent = visit(node.subsequent)

  bounds(node.location)
  on_rescue(exceptions, reference, statements, subsequent)
end

#visit_rest_parameter_node(node) ⇒ Object

def foo(*bar); end

^^^^

def foo(*); end

^


2894
2895
2896
2897
2898
2899
2900
2901
2902
# File 'lib/prism/translation/ripper.rb', line 2894

def visit_rest_parameter_node(node)
  if node.name_loc.nil?
    bounds(node.location)
    on_rest_param(nil)
  else
    bounds(node.name_loc)
    on_rest_param(visit_token(node.name.to_s))
  end
end

#visit_retry_node(node) ⇒ Object

retry ^^^^^



2906
2907
2908
2909
# File 'lib/prism/translation/ripper.rb', line 2906

def visit_retry_node(node)
  bounds(node.location)
  on_retry
end

#visit_return_node(node) ⇒ Object

return ^^^^^^

return 1 ^^^^^^^^



2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
# File 'lib/prism/translation/ripper.rb', line 2916

def visit_return_node(node)
  if node.arguments.nil?
    bounds(node.location)
    on_return0
  else
    arguments = visit(node.arguments)

    bounds(node.location)
    on_return(arguments)
  end
end

#visit_self_node(node) ⇒ Object

self ^^^^



2930
2931
2932
2933
# File 'lib/prism/translation/ripper.rb', line 2930

def visit_self_node(node)
  bounds(node.location)
  on_var_ref(on_kw("self"))
end

#visit_shareable_constant_node(node) ⇒ Object

A shareable constant.



2936
2937
2938
# File 'lib/prism/translation/ripper.rb', line 2936

def visit_shareable_constant_node(node)
  visit(node.write)
end

#visit_singleton_class_node(node) ⇒ Object

class << self; end ^^^^^^^^^^^^^^^^^^



2942
2943
2944
2945
2946
2947
2948
# File 'lib/prism/translation/ripper.rb', line 2942

def visit_singleton_class_node(node)
  expression = visit(node.expression)
  bodystmt = visit_body_node(node.body&.location || node.end_keyword_loc, node.body)

  bounds(node.location)
  on_sclass(expression, bodystmt)
end

#visit_source_encoding_node(node) ⇒ Object

__ENCODING__ ^^^^^^^^^^^^



2952
2953
2954
2955
# File 'lib/prism/translation/ripper.rb', line 2952

def visit_source_encoding_node(node)
  bounds(node.location)
  on_var_ref(on_kw("__ENCODING__"))
end

#visit_source_file_node(node) ⇒ Object

__FILE__ ^^^^^^^^



2959
2960
2961
2962
# File 'lib/prism/translation/ripper.rb', line 2959

def visit_source_file_node(node)
  bounds(node.location)
  on_var_ref(on_kw("__FILE__"))
end

#visit_source_line_node(node) ⇒ Object

__LINE__ ^^^^^^^^



2966
2967
2968
2969
# File 'lib/prism/translation/ripper.rb', line 2966

def visit_source_line_node(node)
  bounds(node.location)
  on_var_ref(on_kw("__LINE__"))
end

#visit_splat_node(node) ⇒ Object

foo(*bar)

^^^^

def foo((bar, *baz)); end

^^^^

def foo(*); bar(*); end

^


2979
2980
2981
# File 'lib/prism/translation/ripper.rb', line 2979

def visit_splat_node(node)
  visit(node.expression)
end

#visit_statements_node(node) ⇒ Object

A list of statements.



2984
2985
2986
2987
# File 'lib/prism/translation/ripper.rb', line 2984

def visit_statements_node(node)
  bounds(node.location)
  visit_statements_node_body(node.body)
end

#visit_string_node(node) ⇒ Object

“foo” ^^^^^



3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
# File 'lib/prism/translation/ripper.rb', line 3001

def visit_string_node(node)
  if (content = node.content).empty?
    bounds(node.location)
    on_string_literal(on_string_content)
  elsif (opening = node.opening) == "?"
    bounds(node.location)
    on_CHAR("?#{node.content}")
  elsif opening.start_with?("<<~")
    heredoc = visit_heredoc_string_node(node.to_interpolated)

    bounds(node.location)
    on_string_literal(heredoc)
  else
    bounds(node.content_loc)
    tstring_content = on_tstring_content(content)

    bounds(node.location)
    on_string_literal(on_string_add(on_string_content, tstring_content))
  end
end

#visit_super_node(node) ⇒ Object

super(foo) ^^^^^^^^^^



3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
# File 'lib/prism/translation/ripper.rb', line 3133

def visit_super_node(node)
  arguments, block, has_ripper_block = visit_call_node_arguments(node.arguments, node.block, trailing_comma?(node.arguments&.location || node.location, node.rparen_loc || node.location))

  if !node.lparen_loc.nil?
    bounds(node.lparen_loc)
    arguments = on_arg_paren(arguments)
  end

  bounds(node.location)
  call = on_super(arguments)

  if has_ripper_block
    bounds(node.block.location)
    on_method_add_block(call, block)
  else
    call
  end
end

#visit_symbol_node(node) ⇒ Object

:foo ^^^^



3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
# File 'lib/prism/translation/ripper.rb', line 3154

def visit_symbol_node(node)
  if (opening = node.opening)&.match?(/^%s|['"]:?$/)
    bounds(node.value_loc)
    content = on_string_content

    if !(value = node.value).empty?
      content = on_string_add(content, on_tstring_content(value))
    end

    on_dyna_symbol(content)
  elsif (closing = node.closing) == ":"
    bounds(node.location)
    on_label("#{node.value}:")
  elsif opening.nil? && node.closing_loc.nil?
    bounds(node.value_loc)
    on_symbol_literal(visit_token(node.value))
  else
    bounds(node.value_loc)
    on_symbol_literal(on_symbol(visit_token(node.value)))
  end
end

#visit_true_node(node) ⇒ Object

true ^^^^



3178
3179
3180
3181
# File 'lib/prism/translation/ripper.rb', line 3178

def visit_true_node(node)
  bounds(node.location)
  on_var_ref(on_kw("true"))
end

#visit_undef_node(node) ⇒ Object

undef foo ^^^^^^^^^



3185
3186
3187
3188
3189
3190
# File 'lib/prism/translation/ripper.rb', line 3185

def visit_undef_node(node)
  names = visit_all(node.names)

  bounds(node.location)
  on_undef(names)
end

#visit_unless_node(node) ⇒ Object

unless foo; bar end ^^^^^^^^^^^^^^^^^^^

bar unless foo ^^^^^^^^^^^^^^



3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
# File 'lib/prism/translation/ripper.rb', line 3197

def visit_unless_node(node)
  if node.statements.nil? || (node.predicate.location.start_offset < node.statements.location.start_offset)
    predicate = visit(node.predicate)
    statements =
      if node.statements.nil?
        bounds(node.location)
        on_stmts_add(on_stmts_new, on_void_stmt)
      else
        visit(node.statements)
      end
    else_clause = visit(node.else_clause)

    bounds(node.location)
    on_unless(predicate, statements, else_clause)
  else
    statements = visit(node.statements.body.first)
    predicate = visit(node.predicate)

    bounds(node.location)
    on_unless_mod(predicate, statements)
  end
end

#visit_until_node(node) ⇒ Object

until foo; bar end ^^^^^^^^^^^^^^^^^

bar until foo ^^^^^^^^^^^^^



3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
# File 'lib/prism/translation/ripper.rb', line 3225

def visit_until_node(node)
  if node.statements.nil? || (node.predicate.location.start_offset < node.statements.location.start_offset)
    predicate = visit(node.predicate)
    statements =
      if node.statements.nil?
        bounds(node.location)
        on_stmts_add(on_stmts_new, on_void_stmt)
      else
        visit(node.statements)
      end

    bounds(node.location)
    on_until(predicate, statements)
  else
    statements = visit(node.statements.body.first)
    predicate = visit(node.predicate)

    bounds(node.location)
    on_until_mod(predicate, statements)
  end
end

#visit_when_node(node) ⇒ Object

case foo; when bar; end

^^^^^^^^^^^^^


3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
# File 'lib/prism/translation/ripper.rb', line 3249

def visit_when_node(node)
  # This is a special case where we're not going to call on_when directly
  # because we don't have access to the subsequent. Instead, we'll return
  # the component parts and let the parent node handle it.
  conditions = visit_arguments(node.conditions)
  statements =
    if node.statements.nil?
      bounds(node.location)
      on_stmts_add(on_stmts_new, on_void_stmt)
    else
      visit(node.statements)
    end

  [conditions, statements]
end

#visit_while_node(node) ⇒ Object

while foo; bar end ^^^^^^^^^^^^^^^^^^

bar while foo ^^^^^^^^^^^^^



3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
# File 'lib/prism/translation/ripper.rb', line 3270

def visit_while_node(node)
  if node.statements.nil? || (node.predicate.location.start_offset < node.statements.location.start_offset)
    predicate = visit(node.predicate)
    statements =
      if node.statements.nil?
        bounds(node.location)
        on_stmts_add(on_stmts_new, on_void_stmt)
      else
        visit(node.statements)
      end

    bounds(node.location)
    on_while(predicate, statements)
  else
    statements = visit(node.statements.body.first)
    predicate = visit(node.predicate)

    bounds(node.location)
    on_while_mod(predicate, statements)
  end
end

#visit_x_string_node(node) ⇒ Object

foo ^^^^^



3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
# File 'lib/prism/translation/ripper.rb', line 3294

def visit_x_string_node(node)
  if node.unescaped.empty?
    bounds(node.location)
    on_xstring_literal(on_xstring_new)
  elsif node.opening.start_with?("<<~")
    heredoc = visit_heredoc_x_string_node(node.to_interpolated)

    bounds(node.location)
    on_xstring_literal(heredoc)
  else
    bounds(node.content_loc)
    content = on_tstring_content(node.content)

    bounds(node.location)
    on_xstring_literal(on_xstring_add(on_xstring_new, content))
  end
end

#visit_yield_node(node) ⇒ Object

yield ^^^^^

yield 1 ^^^^^^^



3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
# File 'lib/prism/translation/ripper.rb', line 3317

def visit_yield_node(node)
  if node.arguments.nil? && node.lparen_loc.nil?
    bounds(node.location)
    on_yield0
  else
    arguments =
      if node.arguments.nil?
        bounds(node.location)
        on_args_new
      else
        visit(node.arguments)
      end

    unless node.lparen_loc.nil?
      bounds(node.lparen_loc)
      arguments = on_paren(arguments)
    end

    bounds(node.location)
    on_yield(arguments)
  end
end