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 cf0f0a6 commit 9ff8728Copy full SHA for 9ff8728
lib/ruby-debug-ide/command.rb
@@ -136,19 +136,8 @@ def debug_silent_eval(str)
136
end
137
138
139
- def hbinding(hash)
140
- code = hash.keys.map{|k| "#{k} = hash['#{k}']"}.join(';') + ';binding'
141
- if obj = @state.context.frame_self(@state.frame_pos)
142
- obj.instance_eval code
143
- else
144
- eval code
145
- end
146
147
- private :hbinding
148
-
149
def get_binding
150
- binding = @state.context.frame_binding(@state.frame_pos)
151
- binding || hbinding(@state.context.frame_locals(@state.frame_pos))
+ @state.context.frame_binding(@state.frame_pos)
152
153
154
def line_at(file, line)
0 commit comments