Re: DMD svn and contract inheritance

2009-10-01 Thread Stewart Gordon
Walter Bright wrote: There are some tricky bits to doing contract inheritance, I hope gdc and ldc don't have trouble with it. What tricky bits are those? Stewart.

Re: DMD svn and contract inheritance

2009-10-01 Thread Walter Bright
Stewart Gordon wrote: Walter Bright wrote: There are some tricky bits to doing contract inheritance, I hope gdc and ldc don't have trouble with it. What tricky bits are those? It's outlined in the code comments, but it's implemented by making the contract code a nested function. The overri

Re: It's official: One-day D tutorial at the ACCU Conference 2010 in Oxford, England

2009-10-01 Thread Graham St Jack
I would love to get my hands on the transcript and video of the event... Will it be recorded?

Re: It's official: One-day D tutorial at the ACCU Conference 2010 in Oxford, England

2009-10-01 Thread Andrei Alexandrescu
Graham St Jack wrote: I would love to get my hands on the transcript and video of the event... Will it be recorded? ACCU has not recorded its conferences in the past. Andrei

Re: DMD svn and contract inheritance

2009-10-01 Thread Stewart Gordon
Walter Bright wrote: Stewart Gordon wrote: Walter Bright wrote: There are some tricky bits to doing contract inheritance, I hope gdc and ldc don't have trouble with it. What tricky bits are those? It's outlined in the code comments, but it's implemented by making the contract code a neste

Re: DMD svn and contract inheritance

2009-10-01 Thread Walter Bright
Stewart Gordon wrote: I'm still none the wiser about why it absolutely has to be done like this instead of the simpler solution I proposed years ago. Can you refresh my memory? (The nested function approach is fairly simple in terms of lines of code to implement.)