Files
Bas Leijdekkers c6807038ca intellijlang: cleanup inspection descriptions (IDEA-251453)
GitOrigin-RevId: f6e697b3d7d03c181c2dab8ec0a579185aa615dc
2021-02-07 20:09:11 +00:00

15 lines
297 B
HTML

<html>
<body>
Reports when the language of a reference does not match the expected language of the usage context.
<p>Example:</p>
<pre><code>
@Language("JavaScript")
String JS_CODE = "var x;";
@Language("XPath")
String XPATH_CODE = JS_CODE; // warning here
</code></pre>
</body>
</html>