Skip to content

Commit

Permalink
style: add missing semicolon (#5532)
Browse files Browse the repository at this point in the history
  • Loading branch information
schroederc committed Mar 10, 2023
1 parent 3f9d0c6 commit 54f7d31
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion kythe/typescript/indexer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1478,7 +1478,7 @@ class Visitor {
//
// TODO(#4021): Bind the local definition and reference the remote
// definition on the import name.
const refAnchor = this.newAnchor(decl.name)
const refAnchor = this.newAnchor(decl.name);
this.visitImport(decl.name, enableReassignment ? null : importTextAnchor, refAnchor);
return;
}
Expand Down

0 comments on commit 54f7d31

Please sign in to comment.