summaryrefslogtreecommitdiff
path: root/lib/irb/cmd/show_source.rb
diff options
context:
space:
mode:
authorStan Lo <stan.lo@shopify.com>2022-12-12 17:35:43 +0000
committergit <svn-admin@ruby-lang.org>2022-12-12 17:35:48 +0000
commit223d4448c827b9daeb6a61312777e67405e66379 (patch)
tree852479c3f432849351c09700e45bb983a6a6d52e /lib/irb/cmd/show_source.rb
parentece624605785f6640118a0cfd97618e71abfbee8 (diff)
[ruby/irb] `show_doc` command should take non-string argument too
(https://github.com/ruby/irb/pull/478) Given that `show_doc` already supports syntax like `String#gsub`, it should be able to take it in non-string form too, like `edit` and `show_source` do. This ensures users can have a consistent syntax on argument between different commands.
Diffstat (limited to 'lib/irb/cmd/show_source.rb')
-rw-r--r--lib/irb/cmd/show_source.rb5
1 files changed, 0 insertions, 5 deletions
diff --git a/lib/irb/cmd/show_source.rb b/lib/irb/cmd/show_source.rb
index b68aa257c2..ea700be4bf 100644
--- a/lib/irb/cmd/show_source.rb
+++ b/lib/irb/cmd/show_source.rb
@@ -65,11 +65,6 @@ module IRB
end
first_line
end
-
- def string_literal?(args)
- sexp = Ripper.sexp(args)
- sexp && sexp.size == 2 && sexp.last&.first&.first == :string_literal
- end
end
def execute(str = nil)