You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is akin to the ImportMap field of go list -json. It essentially tells you that the package in question imports golang.org/x/net/dns/dnsmessage, but the actual package being imported there is vendor/golang.org/x/net/dns/dnsmessage, so you should look for packagefile vendor/golang.org/x/net/dns/dnsmessage=....
We also update the "original types importer" to support ImportMap.
The test now gets further along, no longer getting stuck on "path not
found in listed packages". Instead, we get stuck on:
error parsing importcfg: <...>/importcfg:2: unknown directive "importmap"
This bug has been filed at Binject/debug#17.
Until it's fixed, we can't really proceed on #146, so the net import in
the test file (which triggers this case) is commented out for now.
Updates #146.
For example:
This is akin to the
ImportMap
field ofgo list -json
. It essentially tells you that the package in question importsgolang.org/x/net/dns/dnsmessage
, but the actual package being imported there isvendor/golang.org/x/net/dns/dnsmessage
, so you should look forpackagefile vendor/golang.org/x/net/dns/dnsmessage=...
.This happens in burrowers/garble#146, for example.
The text was updated successfully, but these errors were encountered: