Simon Krajewski
Simon Krajewski
I don't think an open `Rest` can work on this target. Rest arguments are based on native arrays, which are invariant. There is no type in the run-time that would...
Isn't StringTools usually used as a static extension? That would make this a little weird... but I don't know where functions like this typically go.
On development I'm only seeing the `_hx_luv = _G.require("luv");` one, and that comes from https://github.com/HaxeFoundation/haxe/blob/development/std/lua/_lua/_hx_luv.lua. However, if I reference `EReg` I also get `__lua_lib_lrexlib_Rex = _G.require("rex_pcre2")`. I wonder why you...
The problem with lrexlib is that we outright don't have regular expression support on lua without it. To me the question is if the presence of `-D lua-vanilla` should cause...
I don't really want to mess with the existing thread API. Can't we just make this its own thing?
I think this is an unfortunate necessity on targets that don't have a native Int64 implementation and need to emulate it. Int64 is a bit special because it's a native...
Here's a related but different case: ```haxe function main() { var Null:Null = null; var i:Int = Null; trace(i == Null); } ``` The run-time version will give `false`, but...
I don't really know what to do with this issue because it involves haxeui, which usually means the real problem is hidden behind multiple layers of macro insanity. I am...
What's the purpose of a set of grades? That seems like a pretty odd use-case.