You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hygiene for self will be a bit tricky. In particular, the AST doesn't actually contain a binding identifier for self, which means that the resolver doesn't actually have identifiers that can be compared hygienically.
I believe that getting hygiene to work correctly for self will involve equipping the Method node with a self identifier, and then performing a hygienic comparison in resolution.
The text was updated successfully, but these errors were encountered:
Suggest type completions for type arguments and constant completions for constant arguments
When determining completions for generic arguments, suggest only types or only constants if the corresponding generic parameter is a type parameter or constant parameter.
Closesrust-lang#12568
Hygiene for
self
will be a bit tricky. In particular, the AST doesn't actually contain a binding identifier forself
, which means that the resolver doesn't actually have identifiers that can be compared hygienically.I believe that getting hygiene to work correctly for
self
will involve equipping the Method node with aself
identifier, and then performing a hygienic comparison in resolution.The text was updated successfully, but these errors were encountered: