Joey
Joey
**The information below is out of date**: refer to @tobil4sk 's [response](https://github.com/HaxeFoundation/haxe/pull/12344#issuecomment-3166020404) and commits below that ~ ~ I'm unable to compile hxcpp without removing the smart string check, on...
Staying on theme #11174 I have stumbled upon a very slow case of renameVars coming from this file: https://github.com/PXshadow/filter_renameVars/blob/master/golibs/_internal/golangdotorg/x/text/unicode/norm/Norm__buildrecompmap.hx This file is mainly composed of transpiling this Go variable into...
[Simple reproducible example](https://github.com/PXshadow/hxb_no_import_autocomplete) Using an hxb instead of including the class path, no auto complete shows up here. ```haxe import pkg.| function main() {} ``` If I write it out...
```go package main import ( "reflect" "sync" ) func main() { var m sync.Map t := reflect.TypeOf("") m.Store(t, 0) m.Store(t, 1) value, ok := m.Load(t) if !ok || value.(int) !=...
```go package main import ( "context" "sync" "time" ) func main() { ctx0 := &afterFuncContext{} ctx1, cancel := context.WithCancel(ctx0) _ = cancel //defer cancel() ctx0.cancel(context.Canceled) println("wait for done")
### Known issues 1. If a generic type can not be inferred from it's args, the function will not be able to be overloaded and will hit a Haxe compile...
Goroutines is a mixture of threading (if available) and coroutines. In the case of Haxe, threading is supported on all targets except js, but there is no native coroutine support....
```go package main func main() { x := []int{10, 20} y := []int{99} i := 1 for i, x[i] = range y { break } println(x[0], x[1], i) } ```...