-
Notifications
You must be signed in to change notification settings - Fork 589
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Java] Scope classes
support.class
(#3741)
This commit changes scope of classes to `support.class`. Java decided to use `storage.type.class` as `support` scopes are said to be used for types provided by (standard) libraries only. Thus `storage.type` would be the scope for all user defined data types. The truth according to TextMate's scope naming guidelines is exactly vice versa. `storage.type` is meant for basic builtin data types of a language, such as `int`, `char`, ... `support.class`, `support.type`, ... however are meant for all kinds of custom or user defined data types - not only those from standard libraries. As such it makes very much sense most (all) other syntaxes use `support.class` for `ClassTypes`. This commit intents to make Java follow those rules, too, again.
- Loading branch information
Showing
2 changed files
with
431 additions
and
431 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.