-
This one is "interesting" (extracted from OpenFL):
Vector.hx
```haxe
@:multiType(T)
abstract Vector(Array) {
function new();
public inline static function ofArray(a:Array):Vector {
retu…
-
Currently, the `Page` class has the `dest` property with info about the destination.
The `dest` value must be in sync with the `url` value. For example, a page with the url `/foo/` will have the fo…
-
**Describe the bug**
In v5.9.0, if I use meta-class, and if I have to send an uint256, it works fine with a BigNumberish (for example, a bignumber (10n). But it fails if I provide a Uint256 variable.…
-
4.1.5 prints `Warning : Bool`
4.2.0 prints `Warning : Unknown`
comment out the `@:to` will make it print `Bool` again
```haxe
class Main {
static function main() {
var c:Collection = null…
-
This compiles, while it probably should not:
```haxe
abstract A(Int) {
@:to public static function toString(value:Int):String {
return "hello";
}
}
class Main {
static function main()…
-
The following fails with `src/Main.hx:13: lines 13-15 : (this : I) -> C.T should be (I, Unknown) -> Unknown`. Looks like the usual `@:to` conversion methods don't work for `@:multiType` abstracts.
…
-
`Welcome to opendroid for dm820
opendroid 7.3 dm820
dm820 login: root
Password:
Login incorrect
dm820 login: root
root@dm820:~# init 4 && ENIGMA_DEBUG_LVL=4 enigma2
21:51:50.9055 [Enigma] …
-
```haxe
typedef Abstract = Under;
@:multiType abstract Under(T) {
function new(v:T);
@:from public static inline function from(v:T) { return /*cast*/ v; } // { return new Under(v); }…
-
```haxe
abstract Under(T) {
public function new(v:T) { this = v; }
@:from public static function from(v):Under { return v; }
}
var u1 = Under.from({value:0.0, type:TFloat});
```…
-