Skip to content

Commit

Permalink
test: ignore block for coverage
Browse files Browse the repository at this point in the history
  • Loading branch information
lars-reimann committed Oct 23, 2023
1 parent b5f0523 commit 4b6b331
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/language/lsp/safe-ds-inlay-hint-provider.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,11 @@ export class SafeDsInlayHintProvider extends AbstractInlayHintProvider {

override computeInlayHint(node: AstNode, acceptor: InlayHintAcceptor) {
const cstNode = node.$cstNode;
/* c8 ignore start */
if (!cstNode) {
return;
}
/* c8 ignore stop */

if (isSdsArgument(node) && isPositionalArgument(node)) {
const parameter = this.nodeMapper.argumentToParameter(node);
Expand Down

0 comments on commit 4b6b331

Please sign in to comment.