Skip to content

Commit

Permalink
fix(typescript): always return values, even if they're undefined (#5957)
Browse files Browse the repository at this point in the history
  • Loading branch information
zrlk committed Dec 6, 2023
1 parent a68a581 commit fd6d1b5
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions kythe/typescript/indexer.ts
Expand Up @@ -2010,6 +2010,7 @@ class Visitor {
// case" is good enough for now.
return name !== '__computed' ? name : undefined;
}
return undefined;
}

/**
Expand Down

0 comments on commit fd6d1b5

Please sign in to comment.