IDEA-141852 Quick documentation doesn't support @value tag without hash preceding variable reference

This commit is contained in:
Dmitry Batrak
2015-08-14 15:50:47 +03:00
parent 232d795f68
commit decd330820
13 changed files with 162 additions and 15 deletions

View File

@@ -0,0 +1 @@
<html><head><base href="placeholder"> <style type="text/css"> #error { background-color: #eeeeee; margin-bottom: 10px; } p { margin: 5px 0; } </style></head><body><small><b><a href="psi_element://A"><code>A</code></a></b></small><PRE>public static&nbsp;void&nbsp;<b>JAVADOC_ME</b>()</PRE> The value of A is 23.</body></html>

View File

@@ -0,0 +1,6 @@
class A {
public static int A = 23;
/** The value of A is {@value A}. */
public static void JAVADOC_ME() { }
}