Skip to content

Commit

Permalink
support for newer extension ids (#139)
Browse files Browse the repository at this point in the history
  • Loading branch information
GitMensch authored Oct 27, 2023
1 parent 0471474 commit acce6ac
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/extension.ts
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,9 @@ export function activate(context: vscode.ExtensionContext) {
vscode.debug.registerDebugAdapterDescriptorFactory('gdb', new GdbAdapterDescriptorFactory(new CoverageStatus(), new GDBDebugSession())),
vscode.languages.registerEvaluatableExpressionProvider('GnuCOBOL', new GnuCOBOLEvalExpressionFactory()),
vscode.languages.registerEvaluatableExpressionProvider('GnuCOBOL31', new GnuCOBOLEvalExpressionFactory()),
vscode.languages.registerEvaluatableExpressionProvider('GnuCOBOL3.1', new GnuCOBOLEvalExpressionFactory()),
vscode.languages.registerEvaluatableExpressionProvider('GnuCOBOL32', new GnuCOBOLEvalExpressionFactory()),
vscode.languages.registerEvaluatableExpressionProvider('GnuCOBOL3.2', new GnuCOBOLEvalExpressionFactory()),
vscode.languages.registerEvaluatableExpressionProvider('COBOL', new GnuCOBOLEvalExpressionFactory()),
);
}
Expand Down Expand Up @@ -168,4 +170,4 @@ class GnuCOBOLEvalExpressionFactory implements EvaluatableExpressionProvider {
return undefined;
}

}
}

0 comments on commit acce6ac

Please sign in to comment.