gpt4 book ai didi

haskell - 来自 GHC 的更多描述性错误消息

转载 作者:行者123 更新时间:2023-12-03 21:47:20 27 4
gpt4 key购买 nike

我通过 GHCI 运行了一些代码,得到了这个错误:

*** Exception: Prelude.!!: index too large

过了一会儿,我继续修复了这个错误(正如你可能想象的那样,这是由一个太大的索引引起的),但我希望 GHC 能告诉我这个大索引是在哪一行被评估的。

有没有办法
  • A) 使 GHCI 更详细,或
  • B) 使用避免
    这个错误不知何故(当然,避免使用较小的索引)
  • 最佳答案

    You can use GHC's profiling facilities to get a kind of stack trace on errors ,例如,假设这是您的源文件:

    xs :: [Int]
    xs = [1..10]

    foo :: Int -> IO ()
    foo i = print $ xs !! i

    main :: IO ()
    main = mapM_ foo [1..10]

    如果你编译这个
    ghc --make -prof -fprof-auto  StackTrace.hs 

    然后运行它
    ./StackTrace +RTS -xc

    然后你得到
    *** Exception (reporting due to +RTS -xc): (THUNK_1_0), stack trace: 
    GHC.List.CAF
    --> evaluated by: Main.foo,
    called from Main.main,
    called from Main.CAF
    StackTrace: Prelude.!!: index too large

    至少告诉你 mainfoo链。

    关于haskell - 来自 GHC 的更多描述性错误消息,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34688983/

    27 4 0
    Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
    广告合作:1813099741@qq.com 6ren.com