在IntelliD IDEA(2016.3.4)中使用内联文档(使用Ctrl+Q
打开它的弹出窗口)在JavaDoc包含变量时遇到问题,例如:
/** Selects the first element of this $coll.
* $orderDependent
* @return the first element of this $coll.
* @throws NoSuchElementException if the $coll is empty.
*/
而不是解析这些变量,它显示:[Cannot find macro: $coll.]
。 Scala API正确解析它并将$coll
更改为iterable collection
。
有没有办法在IntelliJ IDEA中修复此问题?