6

我正在使用 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 文档?

4

1 回答 1

1

最新版本的 c2hs 现在支持此功能。

于 2014-11-26T08:43:10.413 回答