PureScript icon indicating copy to clipboard operation
PureScript copied to clipboard

在生成UnityBind时对generic delegate parameter进行UnBox没有展开非泛型的参数类型

Open floatyears opened this issue 3 years ago • 0 comments

例如:

public class TestArgs
{
  public string name;
}

public class TestClassA
{
public delegate System.EventHandler<TestArgs> testDelegate; 
}

testDelegate展开之后类型是 EventHandler<TestArgs>(object sender, TestArgs e),此delegate含有两个参数,但是目前会错误的只包含了一个TestArgs类型的参数。

floatyears avatar Mar 14 '22 12:03 floatyears