File tree Expand file tree Collapse file tree 2 files changed +1
-4
lines changed Expand file tree Collapse file tree 2 files changed +1
-4
lines changed Original file line number Diff line number Diff line change @@ -60,7 +60,6 @@ pub struct ExpandedMacro {
6060 pub expansion : String ,
6161}
6262
63-
6463pub enum MatchingBrace { }
6564
6665impl Request for MatchingBrace {
Original file line number Diff line number Diff line change @@ -509,9 +509,7 @@ fn on_request(
509509 . on_sync :: < lsp_types:: request:: SelectionRangeRequest > ( |s, p| {
510510 handlers:: handle_selection_range ( s. snapshot ( ) , p)
511511 } ) ?
512- . on_sync :: < lsp_ext:: MatchingBrace > ( |s, p| {
513- handlers:: handle_matching_brace ( s. snapshot ( ) , p)
514- } ) ?
512+ . on_sync :: < lsp_ext:: MatchingBrace > ( |s, p| handlers:: handle_matching_brace ( s. snapshot ( ) , p) ) ?
515513 . on :: < lsp_ext:: AnalyzerStatus > ( handlers:: handle_analyzer_status) ?
516514 . on :: < lsp_ext:: SyntaxTree > ( handlers:: handle_syntax_tree) ?
517515 . on :: < lsp_ext:: ExpandMacro > ( handlers:: handle_expand_macro) ?
You can’t perform that action at this time.
0 commit comments