Joey
Joey
This requires the bootstrapping process to be completed but is one of the main reasons to prioritize it. Compilers are either very well tested, solid, stable and therefore usable, or...
pointer unsafe pointer uintptr unsafe pointer uintptr conversion not sure if it is possible in Haxe as it requires the element to have no reference for the garbage collector. Currently...
# Overview: - If a test runs beyond the timeout threshold (currently 10 seconds) a single line error is attempted to be shown, with the ending (timed out) - The...
The fmt formatter for Go is pretty sophiscated, currently go2hx was using a modified Haxe library that simulated the formatter for c, however Go has alot of extra features and...
Repo: https://github.com/tidwall/btree Issue refrence: #1 - [x] double pointers. - [x] goto statements and labels properly functioning. - [x] no field name conflicts. (last conflict, being lower casing function names,...
gcc command example: ```sh gcc -O3 -o issue120 -std=c11 issue120.c -I . -I /Users/elliottstoneham/code/haxe/hashlink-1.12/src -lhl -L /usr/local/lib -arch x86_64 ``` ...so HL/C could be added to `go2hx`'s targets! _Originally posted...
The JVM is obviously a Haxe target that requires its own way of writing code. _Originally posted by @elliott5 in https://github.com/go2hx/go2hx/issues/118#issuecomment-1221824295_
```haxe var b = 10; function main() { var x = 0; try { x = b; throw "hi"; }catch(_) { trace(x); } } ``` Returns 0, expected 10 https://try.haxe.org/#806c75c6...
go2hx is now a 4 year old project ## Recap: * 2757 commits * 13 stdlibs passing 🌟 * Very nice automatic updating website [go2hx.github.io](https://go2hx.github.io) with quality custom docs and...