Sha256: afcb15f2f2588933009cda9959113e6064d87a1f50b791dcfa43e369a4856f93

Contents?: true

Size: 793 Bytes

Versions: 7

Compression:

Stored size: 793 Bytes

Contents

# frozen_string_literal: true

module IRB
  module Command
    # Internal use only, for default command's backward compatibility.
    module RubyArgsExtractor # :nodoc:
      def unwrap_string_literal(str)
        return if str.empty?

        sexp = Ripper.sexp(str)
        if sexp && sexp.size == 2 && sexp.last&.first&.first == :string_literal
          @irb_context.workspace.binding.eval(str).to_s
        else
          str
        end
      end

      def ruby_args(arg)
        # Use throw and catch to handle arg that includes `;`
        # For example: "1, kw: (2; 3); 4" will be parsed to [[1], { kw: 3 }]
        catch(:EXTRACT_RUBY_ARGS) do
          @irb_context.workspace.binding.eval "IRB::Command.extract_ruby_args #{arg}"
        end || [[], {}]
      end
    end
  end
end

Version data entries

7 entries across 7 versions & 3 rubygems

Version Path
minato_ruby_api_client-0.2.2 vendor/bundle/ruby/3.2.0/gems/irb-1.14.0/lib/irb/command/internal_helpers.rb
irb-1.14.1 lib/irb/command/internal_helpers.rb
blacklight-spotlight-3.6.0.beta8 vendor/bundle/ruby/3.2.0/gems/irb-1.13.2/lib/irb/command/internal_helpers.rb
irb-1.14.0 lib/irb/command/internal_helpers.rb
irb-1.13.2 lib/irb/command/internal_helpers.rb
irb-1.13.1 lib/irb/command/internal_helpers.rb
irb-1.13.0 lib/irb/command/internal_helpers.rb