]> git.lizzy.rs Git - rust.git/commitdiff
Enable noImplicitReturns option for vscode extension
authorTetsuharu OHZEKI <tetsuharu.ohzeki@gmail.com>
Wed, 11 Dec 2019 15:49:54 +0000 (00:49 +0900)
committerTetsuharu OHZEKI <tetsuharu.ohzeki@gmail.com>
Wed, 11 Dec 2019 16:11:53 +0000 (01:11 +0900)
editors/code/src/commands/runnables.ts
editors/code/src/test/utils/diagnotics/SuggestedFix.test.ts
editors/code/src/test/utils/diagnotics/SuggestedFixCollection.test.ts
editors/code/src/test/utils/diagnotics/rust.test.ts
editors/code/tsconfig.json

index c81d7ce0f062ecbc0b0732eef523645e958ecc71..cf980e257854796d121765309238392c5c145ae3 100644 (file)
@@ -73,7 +73,7 @@ function createTask(spec: Runnable): vscode.Task {
 }
 
 let prevRunnable: RunnableQuickPick | undefined;
-export async function handle() {
+export async function handle(): Promise<vscode.TaskExecution | undefined> {
     const editor = vscode.window.activeTextEditor;
     if (editor == null || editor.document.languageId !== 'rust') {
         return;
@@ -105,12 +105,14 @@ export async function handle() {
         items.push(new RunnableQuickPick(r));
     }
     const item = await vscode.window.showQuickPick(items);
-    if (item) {
-        item.detail = 'rerun';
-        prevRunnable = item;
-        const task = createTask(item.runnable);
-        return await vscode.tasks.executeTask(task);
+    if (!item) {
+        return;
     }
+
+    item.detail = 'rerun';
+    prevRunnable = item;
+    const task = createTask(item.runnable);
+    return await vscode.tasks.executeTask(task);
 }
 
 export async function handleSingle(runnable: Runnable) {
index 96ec8c614d093bdda55f1b3aa40e9ded332c2997..2b25eb705dd35743f432df559326249c34ba4244 100644 (file)
@@ -114,7 +114,8 @@ describe('SuggestedFix', () => {
 
             const edit = codeAction.edit;
             if (!edit) {
-                return assert.fail('Code Action edit unexpectedly missing');
+                assert.fail('Code Action edit unexpectedly missing');
+                return;
             }
 
             const editEntries = edit.entries();
index 4c1467b5760279e74917f8c9af169c2a88f1b33c..ef09013f413040e763c942dad1bc006a118a1312 100644 (file)
@@ -53,7 +53,8 @@ describe('SuggestedFixCollection', () => {
 
         const { diagnostics } = codeAction;
         if (!diagnostics) {
-            return assert.fail('Diagnostics unexpectedly missing');
+            assert.fail('Diagnostics unexpectedly missing');
+            return;
         }
 
         assert.strictEqual(diagnostics.length, 1);
@@ -114,7 +115,8 @@ describe('SuggestedFixCollection', () => {
         const { diagnostics } = codeAction;
 
         if (!diagnostics) {
-            return assert.fail('Diagnostics unexpectedly missing');
+            assert.fail('Diagnostics unexpectedly missing');
+            return;
         }
 
         // We should be associated with both diagnostics
index cee59061f3b529f1091edf5662401c49ead47c14..0222dbbaa0e69f94758d74946f8816c6c097161b 100644 (file)
@@ -120,7 +120,8 @@ describe('mapRustDiagnosticToVsCode', () => {
         // One related information for the original definition
         const relatedInformation = diagnostic.relatedInformation;
         if (!relatedInformation) {
-            return assert.fail('Related information unexpectedly undefined');
+            assert.fail('Related information unexpectedly undefined');
+            return;
         }
         assert.strictEqual(relatedInformation.length, 1);
         const [related] = relatedInformation;
@@ -154,7 +155,8 @@ describe('mapRustDiagnosticToVsCode', () => {
         // One related information for the lint definition
         const relatedInformation = diagnostic.relatedInformation;
         if (!relatedInformation) {
-            return assert.fail('Related information unexpectedly undefined');
+            assert.fail('Related information unexpectedly undefined');
+            return;
         }
         assert.strictEqual(relatedInformation.length, 1);
         const [related] = relatedInformation;
index 9ddf563475c495e4b1b2f85c9247ea377914d314..f0fd2354cb4b82b6f71d71891f155ddebf4cd62d 100644 (file)
@@ -8,7 +8,8 @@
         "rootDir": "src",
         "strict": true,
         "noUnusedLocals": true,
-        "noUnusedParameters": true
+        "noUnusedParameters": true,
+        "noImplicitReturns": true
     },
     "exclude": ["node_modules", ".vscode-test"]
 }