digitalmars.D - Contract programming
- bearophile (9/9) Nov 17 2008 Regarding the contract programming, there's this video (found with Lambd...
- Robert Fraser (2/13) Nov 18 2008 Good idea. Ugly syntax & _way_ too strict for anything but a public API.
Regarding the contract programming, there's this video (found with Lambda the Ultimate) of Contract Programming recently added to the dotnet (note there are WMA and MP4 versions of this video too, but they are hidden in this page, just before comments, under 'downloads'): http://channel9.msdn.com/pdc2008/TL51/ They show: - How to the IDE manages contracts, it seems a good enough way. - Some static contract checking too, artithmetic exceptions, etc. - At about 22.08 it says the contract part of the code can call other functions too, but only if they are pure (I think this is a good little thing to enforce in SafeD. I don't know if a warning can be raised in normal D if this is false). - that contracts are used to automatically generate some documentation too. Bye, bearophile
Nov 17 2008
bearophile wrote:Regarding the contract programming, there's this video (found with Lambda the Ultimate) of Contract Programming recently added to the dotnet (note there are WMA and MP4 versions of this video too, but they are hidden in this page, just before comments, under 'downloads'): http://channel9.msdn.com/pdc2008/TL51/ They show: - How to the IDE manages contracts, it seems a good enough way. - Some static contract checking too, artithmetic exceptions, etc. - At about 22.08 it says the contract part of the code can call other functions too, but only if they are pure (I think this is a good little thing to enforce in SafeD. I don't know if a warning can be raised in normal D if this is false). - that contracts are used to automatically generate some documentation too. Bye, bearophileGood idea. Ugly syntax & _way_ too strict for anything but a public API.
Nov 18 2008