From 3f6fee45f7f908059bbbf3351c92fc40440fd4e3 Mon Sep 17 00:00:00 2001 From: "Adam D. Ruppe" Date: Wed, 9 Jun 2021 22:37:06 -0400 Subject: [PATCH] bug 22011 workarounds --- jsvar.d | 6 ++++-- minigui.d | 2 +- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/jsvar.d b/jsvar.d index cc914c7..ff9d83e 100644 --- a/jsvar.d +++ b/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"; } diff --git a/minigui.d b/minigui.d index e244f4d..aec6547 100644 --- a/minigui.d +++ b/minigui.d @@ -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;