Sha256: 50c4f2fc94161306d20e56d226e7cfe7635416e1b3ac0281c0c9379e553943ee
Contents?: true
Size: 795 Bytes
Versions: 2
Compression:
Stored size: 795 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
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
irb-1.14.3 | lib/irb/command/internal_helpers.rb |
irb-1.14.2 | lib/irb/command/internal_helpers.rb |