测试顶层函数中定义的内部函数并与之交互的最佳方法是什么?


70

当我使用Javascript编程时,我发现使用调试器随时停止程序执行并能够从那里运行命令并检查变量非常方便。

现在,回到Haskell,有没有办法在交互式GHCI REPL中运行任意函数,还是我只限于顶层声明的东西?

使用和调试内部功能和值的“标准”方法是什么?

Answers:


85

当您在GHCi中的断点处停止时,您可以访问范围内的任何内容。假设您有一个像这样的函数:

foo :: Int -> Int
foo x = g (x + 2)
  where g y = x^y 

您可以在其上设置一个断点foo并尝试调用它:

> :break foo
Breakpoint 1 activated at /tmp/Foo.hs:(2,1)-(3,17)
> foo 42
Stopped at /tmp/Foo.hs:(2,1)-(3,17)
_result :: Int = _

g 目前尚不在范围内,因此我们必须执行以下步骤:

[/tmp/Foo.hs:(2,1)-(3,17)] > :step
Stopped at /tmp/Foo.hs:2:9-17
_result :: Int = _
g :: Integral b => b -> Int = _
x :: Int = 42

现在g就在范围之内,我们可以像使用任何顶级函数一样使用它:

[/tmp/Foo.hs:2:9-17] > g 2
1764
[/tmp/Foo.hs:2:9-17] > g 3
74088

GHCi中定义的功能可以完成类似的操作吗?
haskelline

2
@brence:您不能在交互式定义的函数上设置断点。所以不,我不这么认为。
hammar 2012年
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.