Thread overview
Visual D does not list __gshared members
Jun 21, 2019
Bart
Jun 22, 2019
Rainer Schuetze
Jun 22, 2019
Rainer Schuetze
June 21, 2019
Seems so. Not sure why. Maybe because it is a static field? But I'd expect static field to be shown. shared works.
June 22, 2019

On 21/06/2019 14:33, Bart wrote:
> Seems so. Not sure why. Maybe because it is a static field? But I'd expect static field to be shown. shared works.

I guess you mean __gshared members of a class/struct. It seems that dmd doesn't emit these as static members, while it does for shared and tl members.

LDC emits all three, but removes the qualification from the global, so evaluation fails for the qualified name used in the children list.
June 22, 2019

On 22/06/2019 08:57, Rainer Schuetze wrote:
> 
> 
> On 21/06/2019 14:33, Bart wrote:
>> Seems so. Not sure why. Maybe because it is a static field? But I'd expect static field to be shown. shared works.
> 
> I guess you mean __gshared members of a class/struct. It seems that dmd doesn't emit these as static members, while it does for shared and tl members.

I filed https://issues.dlang.org/show_bug.cgi?id=19992