We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
extension
Currently, we don't have a way to tell whether a method is an extension method or not.
Proposing adding a new property EXTENSION like this
EXTENSION
scalameta/semanticdb/semanticdb/semanticdb.proto
Lines 265 to 289 in b97a504
TRANSPARENT = 0x80000; INFIX = 0x100000; OPAQUE = 0x200000; + EXTENSION = 0x400000;
when we have
extension (num: Int) def foo = ???
The SymbolInformation for foo will have an EXTENSION property, and kind = METHOD.
foo
kind = METHOD
The text was updated successfully, but these errors were encountered:
@tanishiking it looks like a good idea. are you looking for an opinion from others (i doubt you need help with implementation 🙂)?
Sorry, something went wrong.
No branches or pull requests
Currently, we don't have a way to tell whether a method is an extension method or not.
Proposing adding a new property
EXTENSION
like thisscalameta/semanticdb/semanticdb/semanticdb.proto
Lines 265 to 289 in b97a504
TRANSPARENT = 0x80000; INFIX = 0x100000; OPAQUE = 0x200000; + EXTENSION = 0x400000;
when we have
The SymbolInformation for
foo
will have anEXTENSION
property, andkind = METHOD
.The text was updated successfully, but these errors were encountered: