Re: dmd: why not use fully qualified names for types in error messages?

2017-06-14 Thread Jonathan M Davis via Digitalmars-d
On Wednesday, June 14, 2017 08:33:26 Jacob Carlborg via Digitalmars-d wrote: > On 2017-06-14 06:50, Timothee Cour via Digitalmars-d wrote: > > eg: > > Error: no property 'IF_gray' for type 'ImageFormat' > > => > > Error: no property 'IF_gray' for type 'foo.bar.ImageFormat' > > > > and also, why not

Re: dmd: why not use fully qualified names for types in error messages?

2017-06-14 Thread Daniel Kozak via Digitalmars-d
http://forum.dlang.org/post/fyzwknqumopldikti...@forum.dlang.org http://forum.dlang.org/post/xpmpakmusudanwuzz...@forum.dlang.org https://issues.dlang.org/show_bug.cgi?id=9631 On Wed, Jun 14, 2017 at 10:21 AM, Nicholas Wilson via Digitalmars-d < digitalmars-d@puremagic.com> wrote: > On Wednesda

Re: dmd: why not use fully qualified names for types in error messages?

2017-06-14 Thread Nicholas Wilson via Digitalmars-d
On Wednesday, 14 June 2017 at 06:33:26 UTC, Jacob Carlborg wrote: On 2017-06-14 06:50, Timothee Cour via Digitalmars-d wrote: eg: Error: no property 'IF_gray' for type 'ImageFormat' => Error: no property 'IF_gray' for type 'foo.bar.ImageFormat' and also, why not show where the symbol is defined

Re: dmd: why not use fully qualified names for types in error messages?

2017-06-13 Thread Jacob Carlborg via Digitalmars-d
On 2017-06-14 06:50, Timothee Cour via Digitalmars-d wrote: eg: Error: no property 'IF_gray' for type 'ImageFormat' => Error: no property 'IF_gray' for type 'foo.bar.ImageFormat' and also, why not show where the symbol is defined? would PR's for that be accepted? is that hard to implement? Te

Re: dmd: why not use fully qualified names for types in error messages?

2017-06-13 Thread H. S. Teoh via Digitalmars-d
On Tue, Jun 13, 2017 at 09:50:29PM -0700, Timothee Cour via Digitalmars-d wrote: > eg: > Error: no property 'IF_gray' for type 'ImageFormat' > => > Error: no property 'IF_gray' for type 'foo.bar.ImageFormat' I support such a change. Is there an issue filed in bugzilla for this? I'd add that this

dmd: why not use fully qualified names for types in error messages?

2017-06-13 Thread Timothee Cour via Digitalmars-d
eg: Error: no property 'IF_gray' for type 'ImageFormat' => Error: no property 'IF_gray' for type 'foo.bar.ImageFormat' and also, why not show where the symbol is defined? would PR's for that be accepted? is that hard to implement?