-
Notifications
You must be signed in to change notification settings - Fork 3.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
(Java) Generic type variable not highlighted #4017
Comments
Are all types in Java CamelCase? |
As the example shows, types in this case are all a capitalized single words, and variables are lowercase single words. |
The question was about Java, not your example. Are types always CamelCase in the Java language? |
Sorry, I misunderstood. By convention, types/classes are PascalCase, while variables/parameters/fields/methods are camelCase. Constructors are PascalCase because they are equal to the class name. Constants are all uppercase SNAKE_CASE. And a generic type can also be specified as a question mark, as in List<?>, and can be recursive as in List<Map<String, Integer>>, or use two special hierarchy tokens as in List<? extends Something> or List<? super Something>, though you probably don't get into such resolution for highlighting. I hope this helps... |
So if we just chose to highlight every occurrence of PascalCase as |
Probably ok, as long as it's not in strings or comments etc. |
Should be simple then, you interested in working on the issue? Lots of other grammars already have this type of "named class" support - Ruby, Wren, etc... |
Describe the issue
In a Java statement that declares and assigns a variable with a generic type, the type and variable don't get highlighted. Without the generic type they are properly highlighted.
Which language seems to have the issue?
java
Are you using
highlight
orhighlightAuto
?highlightElement
...
Sample Code to Reproduce
Expected behavior
Without the generic type, the type (Map) and variable (params) get highlighted. They should be similarly highlighted also when the generic type is present (and the generic type itself should be highlighted as well).
Additional context
The example shows two generic types, but the issue also occurs with a single type such as List. This is the proper way of defining such collections.
The text was updated successfully, but these errors were encountered: