Checks whether the language of a reference matches the expected language of the usage context.

Example:

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

        @Language("XPath")
        String XPATH_CODE = JS_CODE;