Skip to content

Commit

Permalink
Fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
pherrymason committed Jan 16, 2025
1 parent ecc30df commit f2137bd
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions server/internal/lsp/analysis/analysis.go
Original file line number Diff line number Diff line change
Expand Up @@ -143,6 +143,10 @@ func solveSelAtSelectorExpr(selectorExpr *ast.SelectorExpr, pos lsp.Position, fi
}

func solveSymbolChild(symbol *Symbol, childName string, moduleName ModuleName, fileName string, symbolTable *SymbolTable) *Symbol {
if symbol == nil {
return nil
}

selIdent := childName
switch symbol.Kind {
case ast.STRUCT:
Expand Down

0 comments on commit f2137bd

Please sign in to comment.