2013-04-10 83 views
0

我正在使用DartEditor中的菜單項來生成文檔。是否有可能讓dartdoc在屬性上顯示註釋

下正常工作:

dynamic _parent; 
/// Reference to parent of this variable 
dynamic get parent => _parent; 

功能評論也工作得很好。

但是,如果它只是一個公共財產,沒有定義的getter:

/// True if the variable is static 
bool isStatic = false; 

然後我得到的文檔。

是否將標誌從DartEditor發送到dartdoc可配置(如果是這樣)?

我是否需要更改默認配置以獲取評論?

回答

2

這是一個最近修復的錯誤。它應該在本週的編輯器版本中推出。

相關問題