about summary refs log tree commit diff
path: root/editors/code/src
diff options
context:
space:
mode:
authorAdenine <adenine.dev@gmail.com>2023-06-19 00:24:42 -0400
committerAdenine <adenine.dev@gmail.com>2023-07-07 23:09:41 -0400
commitde5e3cf7459b955aa729bcbc6150655edf23e790 (patch)
tree9bcb5c41f95ffb6251b7d89cf41b5de2820fea3c /editors/code/src
parentcfa15d49aaff173a055617a347eda6f6caa9e915 (diff)
downloadrust-de5e3cf7459b955aa729bcbc6150655edf23e790.tar.gz
rust-de5e3cf7459b955aa729bcbc6150655edf23e790.zip
fix incorrect committed rust and run prettier
Diffstat (limited to 'editors/code/src')
-rw-r--r--editors/code/src/commands.ts11
-rw-r--r--editors/code/src/lsp_ext.ts14
-rw-r--r--editors/code/src/main.ts8
3 files changed, 16 insertions, 17 deletions
diff --git a/editors/code/src/commands.ts b/editors/code/src/commands.ts
index c0d68881c23..1e74158b821 100644
--- a/editors/code/src/commands.ts
+++ b/editors/code/src/commands.ts
@@ -1132,27 +1132,24 @@ export function linkToCommand(_: Ctx): Cmd {
 
 export function viewMemoryLayout(ctx: CtxInit): Cmd {
     return async () => {
-
         const editor = vscode.window.activeTextEditor;
         if (!editor) return "";
         const client = ctx.client;
 
         const position = editor.selection.active;
         const expanded = await client.sendRequest(ra.viewRecursiveMemoryLayout, {
-            textDocument: client.code2ProtocolConverter.asTextDocumentIdentifier(
-                editor.document
-            ),
+            textDocument: client.code2ProtocolConverter.asTextDocumentIdentifier(editor.document),
             position,
         });
 
         // if (expanded == null) return "Not available";
 
-
         const document = vscode.window.createWebviewPanel(
             "memory_layout",
             "[Memory Layout]",
             vscode.ViewColumn.Two,
-            { enableScripts: true, });
+            { enableScripts: true }
+        );
 
         document.webview.html = `<!DOCTYPE html>
 <html lang="en">
@@ -1407,7 +1404,7 @@ locate()
 
 })()
 </script>
-</html>`
+</html>`;
 
         ctx.pushExtCleanup(document);
     };
diff --git a/editors/code/src/lsp_ext.ts b/editors/code/src/lsp_ext.ts
index 4244098ae1d..8a0c55a942f 100644
--- a/editors/code/src/lsp_ext.ts
+++ b/editors/code/src/lsp_ext.ts
@@ -70,7 +70,7 @@ export const viewItemTree = new lc.RequestType<ViewItemTreeParams, string, void>
 
 export type AnalyzerStatusParams = { textDocument?: lc.TextDocumentIdentifier };
 
-export interface FetchDependencyListParams { }
+export interface FetchDependencyListParams {}
 
 export interface FetchDependencyListResult {
     crates: {
@@ -86,7 +86,7 @@ export const fetchDependencyList = new lc.RequestType<
     void
 >("rust-analyzer/fetchDependencyList");
 
-export interface FetchDependencyGraphParams { }
+export interface FetchDependencyGraphParams {}
 
 export interface FetchDependencyGraphResult {
     crates: {
@@ -150,9 +150,11 @@ export const serverStatus = new lc.NotificationType<ServerStatusParams>(
     "experimental/serverStatus"
 );
 export const ssr = new lc.RequestType<SsrParams, lc.WorkspaceEdit, void>("experimental/ssr");
-export const viewRecursiveMemoryLayout = new lc.RequestType<ViewRecursiveMemoryLayoutParams, RecursiveMemoryLayout | null, void>(
-    "rust-analyzer/viewRecursiveMemoryLayout"
-);
+export const viewRecursiveMemoryLayout = new lc.RequestType<
+    ViewRecursiveMemoryLayoutParams,
+    RecursiveMemoryLayout | null,
+    void
+>("rust-analyzer/viewRecursiveMemoryLayout");
 
 export type JoinLinesParams = {
     textDocument: lc.TextDocumentIdentifier;
@@ -219,4 +221,4 @@ export type RecursiveMemoryLayout = {
     name: string;
     expansion: string;
     nodes: RecursiveMemoryLayoutNode[];
-};
\ No newline at end of file
+};
diff --git a/editors/code/src/main.ts b/editors/code/src/main.ts
index 492275968f3..64aea03394a 100644
--- a/editors/code/src/main.ts
+++ b/editors/code/src/main.ts
@@ -24,11 +24,11 @@ export async function activate(
         vscode.window
             .showWarningMessage(
                 `You have both the rust-analyzer (rust-lang.rust-analyzer) and Rust (rust-lang.rust) ` +
-                "plugins enabled. These are known to conflict and cause various functions of " +
-                "both plugins to not work correctly. You should disable one of them.",
+                    "plugins enabled. These are known to conflict and cause various functions of " +
+                    "both plugins to not work correctly. You should disable one of them.",
                 "Got it"
             )
-            .then(() => { }, console.error);
+            .then(() => {}, console.error);
     }
 
     const ctx = new Ctx(context, createCommands(), fetchWorkspace());
@@ -144,7 +144,7 @@ function createCommands(): Record<string, CommandFactory> {
                     health: "stopped",
                 });
             },
-            disabled: (_) => async () => { },
+            disabled: (_) => async () => {},
         },
 
         analyzerStatus: { enabled: commands.analyzerStatus },