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 c8dd949 commit 25e8151Copy full SHA for 25e8151
lib/ruby-debug-ide/multiprocess/pre_child.rb
@@ -16,7 +16,8 @@ def pre_child(options = nil)
16
'tracing' => false,
17
'int_handler' => true,
18
'cli_debug' => (ENV['DEBUGGER_CLI_DEBUG'] == 'true'),
19
- 'notify_dispatcher' => true
+ 'notify_dispatcher' => true,
20
+ 'evaluation_timeout' => 10
21
)
22
23
if(options.ignore_port)
@@ -43,6 +44,7 @@ def start_debugger(options)
43
44
# set options
45
Debugger.keep_frame_binding = options.frame_bind
46
Debugger.tracing = options.tracing
47
+ Debugger.evaluation_timeout = options.evaluation_timeout
48
Debugger.cli_debug = options.cli_debug
49
Debugger.prepare_debugger(options)
50
end
0 commit comments