Re: Getting constructor's metadata

2009-10-09 Thread Max Samukha
On Thu, 08 Oct 2009 18:46:08 -0400, Christopher Wright wrote: >Max Samukha wrote: >> Is it possible to get types or aliases of all constructors of a class >> in D2? > >No. > >__traits has some random functionality in this regard. It has a command >getVirtualFunctions which only returns virtual o

Re: Getting constructor's metadata

2009-10-08 Thread Christopher Wright
Max Samukha wrote: Is it possible to get types or aliases of all constructors of a class in D2? No. __traits has some random functionality in this regard. It has a command getVirtualFunctions which only returns virtual overloads. By "virtual", we mean "appears in vtbl". So any non-private, n

Getting constructor's metadata

2009-10-08 Thread Max Samukha
Is it possible to get types or aliases of all constructors of a class in D2?