mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-04 08:51:02 +07:00
15 lines
297 B
HTML
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>
|