pry-debugger非常有用。它有以下命令:
Pry.commands.alias_command 'c', 'continue'
Pry.commands.alias_command 's', 'step'
Pry.commands.alias_command 'n', 'next'
Pry.commands.alias_command 'f', 'finish'
但是,我不知道如何进入。也就是说,当调用一个函数时,我希望调试器打开这个函数并显示它的执行情况。
我该怎么做?
答案 0 :(得分:14)
正如你所说@deivid,step
进入,而next
接下来。我错了。