mirror of https://github.com/adamdruppe/arsd.git
make mvd work with immutable classes
This commit is contained in:
parent
020dc221c8
commit
90bc495938
40
mvd.d
40
mvd.d
|
@ -72,7 +72,9 @@ CommonReturnOfOverloads!fn mvdObj(alias fn, This, T...)(This this_, T args) {
|
||||||
foreach(idx, parg; pargs) {
|
foreach(idx, parg; pargs) {
|
||||||
alias t = typeof(parg);
|
alias t = typeof(parg);
|
||||||
static if(is(t == interface) || is(t == class)) {
|
static if(is(t == interface) || is(t == class)) {
|
||||||
pargs[idx] = cast(typeof(parg)) args[idx];
|
t value = cast(t) args[idx];
|
||||||
|
// HACK: cast to Object* so we can set the value even if it's an immutable class
|
||||||
|
*cast(Object*) &pargs[idx] = cast(Object) value;
|
||||||
if(args[idx] !is null && pargs[idx] is null)
|
if(args[idx] !is null && pargs[idx] is null)
|
||||||
continue ov; // failed cast, forget it
|
continue ov; // failed cast, forget it
|
||||||
else
|
else
|
||||||
|
@ -174,3 +176,39 @@ unittest {
|
||||||
assert(success);
|
assert(success);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
///
|
||||||
|
unittest {
|
||||||
|
immutable class Foo {}
|
||||||
|
|
||||||
|
immutable class Bar : Foo {
|
||||||
|
int x;
|
||||||
|
|
||||||
|
this(int x) {
|
||||||
|
this.x = x;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
immutable class Baz : Foo {
|
||||||
|
int x, y;
|
||||||
|
|
||||||
|
this(int x, int y) {
|
||||||
|
this.x = x;
|
||||||
|
this.y = y;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
static struct Wrapper {
|
||||||
|
static:
|
||||||
|
|
||||||
|
int foo(Bar b) { return b.x; }
|
||||||
|
int foo(Baz b) { return b.x + b.y; }
|
||||||
|
}
|
||||||
|
|
||||||
|
with(Wrapper) {
|
||||||
|
Foo x = new Bar(3);
|
||||||
|
Foo y = new Baz(5, 7);
|
||||||
|
assert(mvd!foo(x) == 3);
|
||||||
|
assert(mvd!foo(y) == 12);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in New Issue