0

使用 ruby​​-debug 进入函数的命令是什么?例子

class Hello
  def meth1
    debugger
    meth2
  end

  def meth2
    puts "hello"
  end
end

我想进入 meth2 内部并查看执行情况。需要类似的命令,例如 n(next)、c(continue)、l(current line)

4

1 回答 1

1

我不认为你搜索得很辛苦,因为谷歌有很多有用的页面。

也许您会发现“使用 ruby​​-debug 进行调试”很有用,尤其Step是.NextFinish

于 2013-03-05T07:33:53.007 回答