IDEA-156628 QuickDoc does not showing array initializers correctly

This commit is contained in:
Dmitry Batrak
2016-06-09 13:10:53 +03:00
parent edc2d90e44
commit 8e3e178333
4 changed files with 11 additions and 5 deletions
@@ -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 int[] <b>x = new int[]{1, 2, 3}</b></PRE></body></html>
@@ -0,0 +1,3 @@
class A {
public static int[] x = new int[]{1, 2, 3};
}