-
-
Notifications
You must be signed in to change notification settings - Fork 313
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
Check in the language server #5937
Conversation
Signed-off-by: Ayaz <[email protected]>
Signed-off-by: Ayaz <[email protected]>
pub trait IterTokens { | ||
// Use a vec until "impl trait in trait" is stabilized | ||
fn iter_tokens<'a>(&self, arena: &'a Bump) -> BumpVec<'a, Loc<Token>>; | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
When ITIT lands this will be 👨🏼🍳 💋 until then, we do this
work_done_progress_params: _, | ||
} = params; | ||
|
||
panic_wrapper(|| self.registry().hover(&text_document.uri, position)) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We still have compiler panics, so this is prudent.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sweet, thanks @ayazhafiz! 😃
Lands the current language server implementation.
At this time, the language server is a separate binary from the CLI, and moreover is not built automatically. When this branch lands, we can change that.