mirror of
https://github.com/golang/go
synced 2024-11-18 16:04:44 -07:00
internal/lsp/cache: detail why the err is ignored
As per slack discussion with Rebecca Stambler. https://gophers.slack.com/archives/CJZH85XCZ/p1560289227072200 Change-Id: Iaa0f93045edd719e1a874ff6ad9bc8d9e51543d5 Change-Id: Iaa0f93045edd719e1a874ff6ad9bc8d9e51543d5 GitHub-Last-Rev: b54997de95b10d01efe4722a28aea376795ba83f GitHub-Pull-Request: golang/tools#115 Reviewed-on: https://go-review.googlesource.com/c/tools/+/181778 Reviewed-by: Rebecca Stambler <rstambler@golang.org> Run-TryBot: Rebecca Stambler <rstambler@golang.org> TryBot-Result: Gobot Gobot <gobot@golang.org>
This commit is contained in:
parent
fe7c687bb5
commit
12febf440a
4
internal/lsp/cache/check.go
vendored
4
internal/lsp/cache/check.go
vendored
@ -292,8 +292,8 @@ func (imp *importer) typeCheck(ctx context.Context, cph *checkPackageHandle, m *
|
||||
}
|
||||
check := types.NewChecker(cfg, imp.view.session.cache.FileSet(), pkg.types, pkg.typesInfo)
|
||||
|
||||
// Ignore type-checking errors.
|
||||
check.Files(files)
|
||||
// Type checking errors are handled via the config, so ignore them here.
|
||||
_ = check.Files(files)
|
||||
|
||||
return pkg, nil
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user