-
The following code doesn't work well in HL because the switch is not exhaustive at runtime:
```haxe
enum abstract A(String) {
var A;
var B;
}
class Test {
static function foo( e : A ) re…
-
I have a listview with several rows of data.
The data rows hide listview border
## Expected Behavior
The data rows does not hide listview border
## Current Behavior
The data rows hide l…
-
``` haxe
@:nativeGen interface MyInterface {
function myMethod():Void;
}
@:nativeGen class MyClass implements MyInterface {
public function new() {}
public function myMethod():Void {}
}
…
-
Exercism v3 Practice Exercises (of which most are implementations of exercises in this repo) have a `practices` field.
This field list the concepts that can be practiced in that exercise.
What sever…
-
My problem lies with this:
``` haxe
class StringBuf {
public inline function add(x :T):Void;
}
```
Because of this signature, anything added to a `StringBuf` gets wrapped in `Std.string`, which …
-
How to make enums?
Is there a variant type for C#?
Would it be appropriate to just store arbitrary data as `object`, then cast upon request if the index matches up? Would lose support for struct typ…
-
```haxe
src/Foo.hx
function hi():Void {
trace("hi");
}
src/client/Main.hx
package client;
function main() {
Fo| // or Foo.|
}
build.hxml
--class-path src
--main client.Main
# -D a…
-
Hey Skial,
I was curious about how the web app for Haxe.io was implemented and started digging the code. At first I thought uFront was used, but doesn't look like it.
But what called my attention w…
-
I understand the historical and practical reasons for the design of the python target. The code runs perfectly fine if my aim is to make a python file to feed into the interpreter. However, as all cod…
-
I have been designing and implementing a way to use native code on mobile and desktop platforms. For a few of the native features that are in the core ([like this](https://github.com/underscorediscove…