go-python / go-python/gopy

Type aliases points to the underlying type not the root one, this cause issues where the autogenerated go package does not build if it links to internal packages.

未关闭
#348 4 条评论 0 个 reaction 已指派 0 人 在 GitHub 查看
主要语言
Go
星标
2.3k
派生
136
平均合并
14 分钟
30 天内合并 PR
2

描述

I have code like this:
```
.
├── a.go
├── b
│   ├── b.go
│   └── internal
│   └── internal.go
└── go.mod
```
```go
// a.go
package a

import "a/b"

type A = b.B
```
```go
// b.go
package b

import "a/b/internal"

type B = internal.I
```
```go
// internal.go
package internal

import "strconv"

type I uint

func (i I) String() string { return strconv.FormatUint(uint64(i), 10) }
```
`gopy pkg a` then creates a folder `a/a` and tries to import `a/b/internal` which does not work because it's not allowed to import an internal package.

My real world usecase is some existing librairy with type alias chains going through multiple modules.

I think this could be solved with the `GODEBUG=gotypesalias=1` https://pkg.go.dev/go/types#Alias but I'm not familiar with the gopy codebase.

贡献指南

这个仓库没有索引到贡献指南

评估

这个 Issue 还没有评估数据。

把新 issue 发到你的邮箱

精选适合新手参与的 GitHub issue 摘要。