Re: Future of export

2017-08-26 Thread Jerry via Digitalmars-d
Export was being implemented as an attribute last I saw of it, by the guy that made that DIP. Looks like he last worked on it some time in July. https://github.com/Ingrater/dmd/commits/DllSupportD2

Re: Future of export

2017-08-23 Thread Nicholas Wilson via Digitalmars-d
On Thursday, 24 August 2017 at 00:31:26 UTC, solidstate1991 wrote: There's already a DIP on the subject (https://github.com/dlang/DIPs/blob/master/DIPs/archive/DIP45.md), but it's pretty much abandoned. I however would like to see it becoming a subject of discussion. DIP45 should be done as soon

Re: Future of export

2017-08-23 Thread solidstate1991 via Digitalmars-d
On Wednesday, 23 August 2017 at 03:19:55 UTC, Nicholas Wilson wrote: I have as part of DIP 1012 ``` enum SymbolExport { neither, dynamicImport, dynamicExport } alias dynamicImport = SymbolExport .dynamicImport; alias dynamicExport = SymbolExport .dynamicExport; ``` to replace the

Future of export

2017-08-22 Thread Nicholas Wilson via Digitalmars-d
I have as part of DIP 1012 ``` enum SymbolExport { neither, dynamicImport, dynamicExport } alias dynamicImport = SymbolExport .dynamicImport; alias dynamicExport = SymbolExport .dynamicExport; ``` to replace the `export` storage visibility, So that one can do ```