IntelliJ 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中解决此问题?

最佳答案

这是IntelliJ IDEA Scala插件中的一个已知错误:

  • SCL-9720使用@define占位符时,文档 View 不可读
  • 关于scala - 内联文档显示List.head()的 'Cannot find macro',我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/42436541/

    10-11 17:11