Joey

Results 62 issues of Joey

```haxe import haxe.Rest; function main() { test(0,1); // works test(...[0,1]); // works test(...[for (i in 0...2) i]); // errors } function test(args:Rest) {} ``` ```sh Exception in thread "main" java.lang.ClassCastException:...

platform-jvm

```haxe function main() { trace(m(10,10)); trace(m(10.2,10.2)); } function m(a:T,b:T) { return (a : Dynamic) * (b : Dynamic); } ``` version: a8f2911 hl: ``100 100`` neko/eval/js: ``100 104.03~`` [try haxe](https://try.haxe.org/#ab6BF276)

```go package main import ( "bytes" "fmt" "time" ) func main() { const japanese = "日本語日本語日本語日" var b bytes.Buffer stamp := time.Now() for i := 0; b.Len() < 5_000; i++...

``rnd/main.go`` ```go package main func main() { var x X x.t() } type X int func (X) t() { } ``` ```sh go run . ./rnd . ``` Inside of...

```go func main() { var x time.Duration _ = x } ``` ```sh haxelib run go2hx ./rnd --rebuild --jvm rnd.jar ``` error: ``IO.Overflow("write_ui16")`` Related to issue: https://github.com/HaxeFoundation/haxe/issues/9654

@elliott5 for test runner prototype used the [godebug's diff](https://github.com/kylelemons/godebug) library, it has no external dependencies and would be a great addition to see the diff for test suites such as...

For example inside of ``github_com.go2hx.go4hx.rnd.Rnd`` modular class: ``github_com.go2hx.go4hx.rnd.X`` where ``X`` is a class or typedef. ``github_com.go2hx.go4hx.rnd.Rnd.y`` where ``y`` is a function. Found this out by using ``haxe.macro.TypeTools.toString`` to resolve where...

```go type S[T any] struct { J T } func (d Data[T]) run() { } ``` Needs to be supported however the same restrictions that caused all generic functions to...

I think the wiki pages should be removed and the content moved to the go2hx github site. The reasoning is the wiki is obscure in terms of looking through the...

When any field/type is used of math/big at the moment, for compiled Haxe code the compiler hangs. Using the ``--verbose`` flag the last typing is ``Typing stdgo.math.big._Big.Big_Fields_._karatsubaSqr`` It's not very...