IDEA-148225 {@code} and {@literal} Javadoc blocks aren't treated literally by Ctrl+Q

This commit is contained in:
Dmitry Batrak
2015-11-19 19:39:50 +03:00
parent 59537adb7f
commit f1a2e519d8
4 changed files with 13 additions and 4 deletions
@@ -0,0 +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://Foo"><code>Foo</code></a></b></small><PRE>int <b>foo</b></PRE>
&amp;gt; is &gt; &amp;lt; is &lt; &amp;quot; is &quot;</body></html>
@@ -0,0 +1,6 @@
class Foo {
/**
* {@literal &gt; is > &lt; is < &quot; is "}
*/
int foo;
}