Module: IRB::Command::RubyArgsExtractor
- Included in:
- Edit, LoaderCommand, Ls, Measure, MultiIRBCommand, ShowDoc, ShowSource
- Defined in:
- lib/irb/command/internal_helpers.rb
Overview
Internal use only, for default command’s backward compatibility.
Instance Method Summary collapse
Instance Method Details
#ruby_args(arg) ⇒ Object
18 19 20 21 22 23 24 |
# File 'lib/irb/command/internal_helpers.rb', line 18 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 |
#unwrap_string_literal(str) ⇒ Object
:nodoc:
7 8 9 10 11 12 13 14 15 16 |
# File 'lib/irb/command/internal_helpers.rb', line 7 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 |