File tree Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -57,7 +57,7 @@ export class FortranDocumentSymbolProvider
57
57
}
58
58
}
59
59
return symbols ;
60
- } ;
60
+ }
61
61
62
62
getSymbolsOfType ( type : "subroutine" | "function" | "variable" ) : ParserFunc {
63
63
switch ( type ) {
@@ -113,7 +113,7 @@ export class FortranDocumentSymbolProvider
113
113
) ;
114
114
}
115
115
}
116
-
116
+
117
117
getSymbolTypes ( ) {
118
118
let config = vscode . workspace . getConfiguration ( "fortran" ) ;
119
119
const symbolTypes = config . get < SymbolType [ ] > ( "symbols" , [
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ export default class FortranLintingProvider {
18
18
if ( textDocument . languageId !== LANGUAGE_ID || textDocument . uri . scheme !== "file" ) {
19
19
return ;
20
20
}
21
-
21
+
22
22
let decoded = "" ;
23
23
let diagnostics : vscode . Diagnostic [ ] = [ ] ;
24
24
let command = this . getGfortranPath ( ) ;
Original file line number Diff line number Diff line change 2
2
import * as fs from 'fs' ;
3
3
import * as vscode from 'vscode' ;
4
4
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
8
8
export const LANGUAGE_ID = 'FortranFreeForm' ;
9
9
10
10
export const intrinsics = [
You can’t perform that action at this time.
0 commit comments