We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 435c08e commit db3d0daCopy full SHA for db3d0da
lib/ruby-debug-ide/commands/variables.rb
@@ -80,11 +80,11 @@ def execute
80
obj = debug_eval(@match.post_match)
81
end
82
return unless obj
83
- if (obj.is_a?(Array)) then
+ if obj.is_a?(Array)
84
print_array(obj)
85
- elsif (obj.is_a?(Hash)) then
+ elsif obj.is_a?(Hash)
86
print_hash(obj)
87
- elsif (obj.is_a?(String))
+ elsif obj.is_a?(String)
88
print_string(obj)
89
else
90
print_element("variables") do
0 commit comments