(ctx *go_build_context)
| 279 | } |
| 280 | |
| 281 | func unpack_build_context(ctx *go_build_context) package_lookup_context { |
| 282 | return package_lookup_context{ |
| 283 | Context: build.Context{ |
| 284 | GOARCH: ctx.GOARCH, |
| 285 | GOOS: ctx.GOOS, |
| 286 | GOROOT: ctx.GOROOT, |
| 287 | GOPATH: ctx.GOPATH, |
| 288 | CgoEnabled: ctx.CgoEnabled, |
| 289 | UseAllFiles: ctx.UseAllFiles, |
| 290 | Compiler: ctx.Compiler, |
| 291 | BuildTags: ctx.BuildTags, |
| 292 | ReleaseTags: ctx.ReleaseTags, |
| 293 | InstallSuffix: ctx.InstallSuffix, |
| 294 | }, |
| 295 | } |
| 296 | } |
no outgoing calls
no test coverage detected