| commit | ff7e3364d9383cf14155f8c2efc87218d07eb03b | [log] [tgz] |
|---|---|---|
| author | Jay Conrod <jayconrod@gmail.com> | Fri Feb 16 16:17:42 2018 -0500 |
| committer | GitHub <noreply@github.com> | Fri Feb 16 16:17:42 2018 -0500 |
| tree | 8ef254d12a7526f7123d85a133f5f44112ecfa0c | |
| parent | dd3c631c31c8d4e3b5bcffc4b66e8c092172ed89 [diff] |
Reverse sense of importpath and importmap (#1330) importpath is the source importpath. Packages can reference other packages using import declarations with this string. importmap is the actual importpath. The compiler and linker use this, and it's visible in stack traces. This only needs to be set when multiple packages with the same import path would otherwise be linked. Related #1237