IDEA-155239 Quick documentation does not show static lambda field values when "Show quick doc on mouse move" is enabled

This commit is contained in:
Dmitry Batrak
2016-04-26 22:14:26 +03:00
parent 67d7150d7e
commit 0f4a395569
5 changed files with 10 additions and 2 deletions
@@ -1,2 +1,2 @@
<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://Test"><code>Test</code></a></b></small><PRE>public static final int <b>field =
<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://Test"><code>Test</code></a></b></small><PRE>public static final int <b>field = 1 + 1
Resolved value: 2</b></PRE></body></html>
@@ -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 <font color=red>java.util.function.Consumer&lt;Integer&gt;</font> <b>F = i -&gt; System.out.println(i)</b></PRE></body></html>
@@ -0,0 +1,3 @@
class A {
public static java.util.function.Consumer<Integer> F = i -> System.out.println(i);
}