我正在使用 c2hs 编写一些 haskell 绑定,并且我想使用 Haddock 来记录自动生成的构造函数和函数参数。但是,c2hs 忽略了注释;
{#enum define WinPos
{
CA as HA -- ^ This comment is not shown in the .hs file
,CB as HB -- ^ Neither this one
}
deriving (Eq,Ord,Show)#}
如何在不编写太多 FFI 代码的情况下获得这些字段的 Haddock 文档?