Back to Intellij Community

LanguageMismatch

java/langInjection/resources/inspectionDescriptions/LanguageMismatch.html

2025.3-rc-2240 B
Original Source

Reports when the language of a reference does not match the expected language of the usage context.

Example:

@Language("JavaScript")
  String JS_CODE = "var x;";

  @Language("XPath")
  String XPATH_CODE = JS_CODE; // warning here