-
Notifications
You must be signed in to change notification settings - Fork 719
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Unity]泛型类的静态泛型方法,导出index代码出错 #574
Comments
Typescript中的静态变量不支持泛型,只能用any解决。 |
另外补充一个问题,泛型基类被继承后,filter没法把他的方法过滤掉,始终会导出 |
这个没有问题,现在是代码生成成了T,没办法正常编译js了,只能手改成any,希望可以直接生成成any |
确认了下 #216 已经修过这个问题,在最新版本验证已经是any。你确认下你的版本哈 |
这个我没复现,你有例子的话新提一个issue处理哈 |
我更新了现在是最新,还是一样,属性是any,方法不是 |
好的,我周一尝试弄一个最小化的例子 |
返回值那里确实有个大小写的bug,已修复。 下面这个问题有例子后下周另提issue哈 |
如图的泛型基类
导出index后的代码
可以看到泛型属性方法,正常导出成了any类型返回值
而静态方法,返回值类型是T,无法正常编译成js
目前可以手改成any,希望可以让泛型类静态方法也和静态属性一样,都是返回any
The text was updated successfully, but these errors were encountered: