作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
haskell automatically inserts由于缩进,分号和大括号。在 this answer , 类型错误用于有 ghci
打印带有明确显示的分号和大括号的代码。如何在这些插入后查看代码而不会出现错误?我希望应该有像 gcc
这样的东西的-E
flag,显示宏预处理后的代码。
最佳答案
$ cat >> Hello.hs
main = do
putStr "Hello, "
putStrLn "World!"
$ ghc -ddump-ds Hello.hs # ds for "desugar"
[1 of 1] Compiling Main ( Hello.hs, Hello.o )
==================== Desugar (after optimization) ====================
Result size of Desugar (after optimization)
= {terms: 18, types: 9, coercions: 0, joins: 0/0}
-- RHS size: {terms: 8, types: 3, coercions: 0, joins: 0/0}
main :: IO ()
[LclIdX]
main
= >>
@ IO
GHC.Base.$fMonadIO
@ ()
@ ()
(putStr (GHC.CString.unpackCString# "Hello, "#))
(putStrLn (GHC.CString.unpackCString# "World!"#))
-- RHS size: {terms: 2, types: 1, coercions: 0, joins: 0/0}
:Main.main :: IO ()
[LclIdX]
:Main.main = GHC.TopHandler.runMainIO @ () main
-- RHS size: {terms: 5, types: 0, coercions: 0, joins: 0/0}
Main.$trModule :: GHC.Types.Module
[LclIdX]
Main.$trModule
= GHC.Types.Module
(GHC.Types.TrNameS "main"#) (GHC.Types.TrNameS "Main"#)
关于haskell - 由于缩进而调试显式字符,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49081158/
我是一名优秀的程序员,十分优秀!