Aurea
Aurea
@RealyUniqueName > So, if I need some `CODE` in an opening tag, then I have to duplicate it in a closing tag? I think the idea is that the optional...
@szczepanpp as was said in one of the previous inline markup discussions, re-entrancy is a parser problem, not an application problem – it cannot be solved with macros interpreting the...
Merging typed metadata into the existing syntax seems unlikely to work out. In particular: > For the time being, this proposal suggests throwing an error *unless* `-D allow-untyped-meta` is defined....
Hey, As the `README` says, other platforms are planned. The first target I will try after iOS will indeed be Android. I have installed the NDK, the emulator and the...
@darmie Well, I don't have time for `plumob` in the coming week or two, so sure, why not! See what you can do on your fork, try to make sure...
@darmie I'm somewhat biased against Java, and I'd think having both platforms use `hxcpp` would be simpler. Nonetheless, if you think building via the Java target would be easier to...
@darmie Any progress with the Android version? No pressure of course but please let me know if you can't make it for any reason so I know what's up.
@francescoagati As I said, state-crossing locals are already detected, e.g.: ```haxe co({ var x = foo(); suspend(); trace(x); }); ``` Here `x` is declared in a state different from when...
Yes, I did a very preliminary test with ammer binding to libclang to parse header files. I think using an off-the-shelf compiler for parsing C (and other supported languages) is...
(Tangential:) For front-ends it might make sense to have a mode like `-Werror` for C compilers, which would turn any warning into an error that we must handle as part...