-
Notifications
You must be signed in to change notification settings - Fork 83
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hash with long-computable inspect
fix
#111
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please fix typos and rebase on current master
lib/ruby-debug-ide/xml_printer.rb
Outdated
@@ -159,11 +165,10 @@ def print_string(string) | |||
end | |||
end | |||
|
|||
def exec_with_allocation_control(value, memory_limit, time_limit, exec_method, return_message_if_overflow) | |||
def exec_with_allocation_control(value, memory_limit, time_limit, exec_method, overflow_massage_type) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
massage?
lib/ruby-debug-ide/xml_printer.rb
Outdated
@@ -5,6 +5,12 @@ | |||
|
|||
module Debugger | |||
|
|||
module OverflowMessageType | |||
NIL_MESSAGE = lambda {|e| nil} | |||
EXEPTION_MESSAGE = lambda {|e| e.message} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
exception
52dd2f4
to
cbdb160
Compare
format xml_printer with RM formatter and execution time control for calculating hash keys and values