issues
search
fponticelli
/
thx.core
Super-charged standard library for Haxe.
http://thx-lib.org
MIT License
124
stars
43
forks
source link
Fix compatibility with Haxe dev
#266
Closed
Gama11
closed
5 years ago
Gama11
commented
5 years ago
I don't think this ever worked:
Haxe did not used to define
haxe
, this was likely meant to be
haxe_ver
The
< 3.3
is not part of the check, since it's not wrapped in parens. It just wasn't an issue so far because
#if haxe
also evaluated to
false
.
Haxe 4 adds a
haxe
define (
https://github.com/HaxeFoundation/haxe/pull/8305
), so this block suddenly becomes active.
I don't think this ever worked:
haxe
, this was likely meant to behaxe_ver
< 3.3
is not part of the check, since it's not wrapped in parens. It just wasn't an issue so far because#if haxe
also evaluated tofalse
.haxe
define (https://github.com/HaxeFoundation/haxe/pull/8305), so this block suddenly becomes active.