missing: __traits(isPublic (private, etc...)

2011-06-20 Thread Lloyd Dupont
I am working a reflection / introspection library (dynamic / at runtime, as opposed to compile time with template and mixin). Now I can create PropertyInfo classes for property with very little code and it all works well. I'm hitting a problem, trying to register all property of my class

Re: missing: __traits(isPublic (private, etc...)

2011-06-20 Thread Adam Ruppe
Indeed, this would be nice. I want it for my web.d thing. But, as far as I know, there's no way to get it at all right now. A while ago, I tried to add it to the compiler. The problem is protection is stored with the symbol itself, not the thingy returned by getMember - that's always considered

Re: missing: __traits(isPublic (private, etc...)

2011-06-20 Thread Lloyd Dupont
Hey Adam! Thanks again for your web.d! My introspection class went along quite well, thanks in no small part to you! ;) implementing INotifyPropertyChanged now and .. data binding next! :) Adam Ruppe wrote in message news:itnfqc$kg2$1...@digitalmars.com... Indeed, this would be nice. I