Skip to content

Commit

Permalink
fix some lsp problems
Browse files Browse the repository at this point in the history
  • Loading branch information
disjukr committed Dec 10, 2023
1 parent dc5949d commit 6715ddf
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion cli/pb/cmds/lsp/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ command
{ hidden: true },
)
.option(
"--clientProcessId <pid: number>",
"--clientProcessId <pid:number>",
"Option for language-server client",
{ hidden: true },
)
Expand Down
2 changes: 2 additions & 0 deletions core/visitor/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,8 @@ export const visitor: Visitor = {
switch (node.type) {
case "syntax":
return visitor.visitSyntax(visitor, node);
case "edition":
return visitor.visitEdition(visitor, node);
case "import":
return visitor.visitImport(visitor, node);
case "package":
Expand Down

0 comments on commit 6715ddf

Please sign in to comment.