2017-02-24 1 views
5

Inline Dokumentation (Ctrl+Q verwenden zu öffnen Pop-up ist) in IntelliJ IDEA (2016.03.04) hat Probleme, wenn JavaDoc Variablen enthält, wie:Inline-Dokumentation zeigt 'Kann nicht Makro finden' für List.head()

/** Selects the first element of this $coll. 
* $orderDependent 
* @return the first element of this $coll. 
* @throws NoSuchElementException if the $coll is empty. 
*/ 

Anstatt diese Variablen zu analysieren, wird Folgendes angezeigt: [Cannot find macro: $coll.]. Scala API analysiert es korrekt und ändert $coll in iterable collection.

Gibt es eine Möglichkeit, dieses Problem in IntelliJ IDEA zu beheben?

Antwort

3

Es ist ein bekannter Fehler in IntelliJ IDEA Scala-Plugin:

  • SCL-9720 Dokumentation Ansicht lesbar, wenn @define Platzhalter verwendet
Verwandte Themen