mirror of https://github.com/adamdruppe/arsd.git
bug 22011 workarounds
This commit is contained in:
parent
5a6ed6245f
commit
3f6fee45f7
6
jsvar.d
6
jsvar.d
|
@ -2281,7 +2281,8 @@ unittest {
|
|||
// prototype.... i think
|
||||
//assert(gotten.method() == "Amazing");
|
||||
|
||||
class CFoo : IFoo {
|
||||
//https://issues.dlang.org/show_bug.cgi?id=22011 necessitated the static!
|
||||
static class CFoo : IFoo {
|
||||
@scriptable string method() { return "CFoo"; }
|
||||
int method2() { return 55; }
|
||||
int args(int, int) { return 6 + 5; }
|
||||
|
@ -2845,8 +2846,9 @@ string static_foreach(size_t length, int t_start_idx, int t_end_idx, string[] t.
|
|||
}
|
||||
|
||||
private string deprecationCheck() {
|
||||
//https://issues.dlang.org/show_bug.cgi?id=22011 this hack sucks
|
||||
static if(__VERSION__ >= 2077)
|
||||
return "__traits(isDeprecated, __traits(getMember, obj, memberName))";
|
||||
return "__traits(isDeprecated, __traits(getMember, obj, memberName == `this` ? `__ctor` : memberName))";
|
||||
else
|
||||
return "false";
|
||||
}
|
||||
|
|
|
@ -2937,7 +2937,7 @@ class DataControllerWidget(T) : WidgetContainer {
|
|||
}
|
||||
|
||||
foreach(member; __traits(allMembers, T))
|
||||
static if(member != "this") // wtf
|
||||
static if(member != "this") // wtf https://issues.dlang.org/show_bug.cgi?id=22011
|
||||
static if(__traits(getProtection, __traits(getMember, this.datum, member)) == "public") {
|
||||
void delegate() update;
|
||||
|
||||
|
|
Loading…
Reference in New Issue