Skip to content

Commit

Permalink
Remove debugger statements
Browse files Browse the repository at this point in the history
  • Loading branch information
Gerrit0 committed Aug 13, 2023
1 parent 7483d5e commit 4feb947
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 6 deletions.
4 changes: 0 additions & 4 deletions src/lib/converter/comments/linkResolver.ts
Original file line number Diff line number Diff line change
Expand Up @@ -99,10 +99,6 @@ function resolveLinkTag(
pos++;
}

if (part.text.trim() === "TestBase#timeout") {
debugger;
}

let target: Reflection | string | undefined;
// Try to parse a declaration reference if we didn't use the TS symbol for resolution
const declRef = parseDeclarationReference(part.text, pos, end);
Expand Down
2 changes: 0 additions & 2 deletions src/lib/models/comments/comment.ts
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,6 @@ export class Comment {
case "code":
return { ...part };
case "inline-tag": {
if (part.text === "TestBase#timeout") debugger;
let target: JSONOutput.InlineTagDisplayPart["target"];
if (typeof part.target === "string") {
target = part.target;
Expand Down Expand Up @@ -251,7 +250,6 @@ export class Comment {
case "code":
return { ...part };
case "inline-tag": {
if (part.text === "TestBase#timeout") debugger;
if (typeof part.target === "number") {
const part2 = {
kind: part.kind,
Expand Down

0 comments on commit 4feb947

Please sign in to comment.