Skip to content

Commit b50a2b4

Browse files
pedro-ricardokrvajal
authored andcommitted
Fix minor build errors (#59)
1 parent 19f81f6 commit b50a2b4

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

src/features/document-symbol-provider.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ export class FortranDocumentSymbolProvider
5757
}
5858
}
5959
return symbols;
60-
};
60+
}
6161

6262
getSymbolsOfType(type: "subroutine" | "function" | "variable"): ParserFunc {
6363
switch (type) {
@@ -113,7 +113,7 @@ export class FortranDocumentSymbolProvider
113113
);
114114
}
115115
}
116-
116+
117117
getSymbolTypes() {
118118
let config = vscode.workspace.getConfiguration("fortran");
119119
const symbolTypes = config.get<SymbolType[]>("symbols", [

src/features/linter-provider.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ export default class FortranLintingProvider {
1818
if (textDocument.languageId !== LANGUAGE_ID || textDocument.uri.scheme !== "file") {
1919
return;
2020
}
21-
21+
2222
let decoded = "";
2323
let diagnostics: vscode.Diagnostic[] = [];
2424
let command = this.getGfortranPath();

src/lib/helper.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
import * as fs from 'fs';
33
import * as vscode from 'vscode';
44

5-
// IMPORTANT: this should match the value
6-
// on the package.json otherwise the extension won't
7-
// work at all ⛽️
5+
// IMPORTANT: this should match the value
6+
// on the package.json otherwise the extension won't
7+
// work at all
88
export const LANGUAGE_ID = 'FortranFreeForm';
99

1010
export const intrinsics = [

0 commit comments

Comments
 (0)