Elliott Stoneham

Results 169 comments of Elliott Stoneham

You are right, the example does not work because a Pointer type can only work on a Haxe value that is passed by reference - doh!

Excellent news @PXshadow , I'll look forward to seeing `go2hx/libraries` develop. As you say (I think), Go packages that don't pass their tests under `go2hx` should not be included in...

For an example of `callgraph` use, below are the packages used by the go2hxdoc/example-project: ```go package main import ( _ "github.com/arriqaaq/zset" _ "github.com/kr/text" _ "golang.org/x/example/stringutil" ) func main() {} ```...

Adding a `-test` flag to the `callgraph` invocation, will include the package's tests in the analysis @PXshadow. ...although it makes no difference on the example above, probably because it has...

I've never heard of "`go get package@none`" before, great spot! As [callgraph ](https://pkg.go.dev/golang.org/x/tools/cmd/callgraph) is written in go, if it is easier, it could be incorporated into go4hx rather than called...

Sounds like a very good starting point @PXshadow , the logic can be modified later if there is an issue - but that will only become apparent with live use.

Unfortunately it still does not work @PXshadow , the generated code looks the same as before - with no path to the `_textdistace` module and not given in the import...

The initially reported `unicode/utf8` issues seem resolved. I'll need to look further tomorrow to check the other issues in the thread above.

Everything above now works except for: https://github.com/go2hx/go2hx/issues/122#issuecomment-1236559011