What features of the upcoming Delphi Prism would you like to see in Delphi for win32? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-14T23:30:58Z http://stackoverflow.com/feeds/question/268537 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/268537/what-features-of-the-upcoming-delphi-prism-would-you-like-to-see-in-delphi-for-wi 5 What features of the upcoming Delphi Prism would you like to see in Delphi for win32? Steve 2008-11-06T12:41:07Z 2009-11-26T22:17:03Z <p>What with Delphi Prism coming soon, I've been looking at Oxygene (the Remobjects compiler, Delphi Prism will use), and have a found a few features I'd love to see in Delphi Win32. S</p> http://stackoverflow.com/questions/268537/what-features-of-the-upcoming-delphi-prism-would-you-like-to-see-in-delphi-for-wi/268549#268549 6 Answer by gabr for What features of the upcoming Delphi Prism would you like to see in Delphi for win32? gabr 2008-11-06T12:44:53Z 2008-11-06T12:44:53Z <p>Simple answer: All of them. Simply because that would make it one language again.</p> http://stackoverflow.com/questions/268537/what-features-of-the-upcoming-delphi-prism-would-you-like-to-see-in-delphi-for-wi/270327#270327 4 Answer by Steve for What features of the upcoming Delphi Prism would you like to see in Delphi for win32? Steve 2008-11-06T21:21:22Z 2008-11-06T21:21:22Z <p>ome of my favourites are :</p> <p><strong>Inline Property expressions and implicit property variables</strong></p> <pre><code>property Length: double; property Width: double; property Area: double read Length*Width </code></pre> <p><strong>Property Initial Values</strong></p> <pre><code>property Length: Integer := 15; </code></pre> <p><strong>Iterators</strong></p> <p>While Iterators are available in Delphi, the use of sequences and the yield keyword makes creating them much easier.</p> <pre><code>method GetEmptyKeys: sequence of string;iterator; ... property EmptyKeys : sequence of TKey read GetEmptyKeys; ... ... ... method TMyClass.GetEmptyKeys begin for each key in keylist do if key = '' then yield key; end; </code></pre> <p>I could go on and on, but those would be very nice to have.</p> <p>note this question has kind of been asked before but not in relation to Prism. <a href="http://stackoverflow.com/questions/230940/what-features-would-you-like-to-see-in-the-win32-delphi-compiler">here</a></p> http://stackoverflow.com/questions/268537/what-features-of-the-upcoming-delphi-prism-would-you-like-to-see-in-delphi-for-wi/270528#270528 -2 Answer by mliesen for What features of the upcoming Delphi Prism would you like to see in Delphi for win32? mliesen 2008-11-06T22:13:13Z 2008-11-06T22:13:13Z <p>Garbage collector</p> http://stackoverflow.com/questions/268537/what-features-of-the-upcoming-delphi-prism-would-you-like-to-see-in-delphi-for-wi/270696#270696 2 Answer by Oliver Giesen for What features of the upcoming Delphi Prism would you like to see in Delphi for win32? Oliver Giesen 2008-11-06T23:02:38Z 2008-11-06T23:02:38Z <p>Apart from what Gabr said, some of the syntactic sugar cubes I would really like to have in Win32 are:</p> <ul> <li>nullable types and related mechanisms like the colon operator and the coalesce compiler magic function</li> <li>class contracts, i.e. pre- and post-conditions and invariants</li> <li>require/allow variable on <code>with</code> statement, aka <code>using</code></li> <li>multi-threading enhancements, like <code>async</code> and <code>future</code> (ok, this is actually much more than just syntactic sugar)</li> </ul> http://stackoverflow.com/questions/268537/what-features-of-the-upcoming-delphi-prism-would-you-like-to-see-in-delphi-for-wi/272141#272141 4 Answer by Robert Giesecke for What features of the upcoming Delphi Prism would you like to see in Delphi for win32? Robert Giesecke 2008-11-07T13:59:27Z 2008-11-07T13:59:27Z <p>Some things that would have prevented me running back to Oxygene/Prism screaming, everytime I had to use Delphi in the past 3 or 4 years:</p> <ul> <li>multi-pass compilation <ul> <li>cut the forward declares and that mutual usages <strong>require</strong> you to put everything in one file</li> </ul></li> <li>type inference! <ul> <li>using, named with, inline vars</li> </ul></li> <li>filenames are filenames, just filenames <ul> <li>they should not be identifiers, and most certainly not namespaces</li> <li>make it crystal what gets compiled and what does not. This implicit search path stuff is very annoying, IMO.</li> </ul></li> <li>class libraries that don't require anything else to be referenced <ul> <li>once referenced, no DCUs of units in the package should be necessary</li> </ul></li> </ul> <p>I could go on on about actual language features. But some of them wouldn't even make sense in a single-pass compiler.<br /> Or not a single language feature would come close to the benefits one of these general enhancements would bring to the table...</p> http://stackoverflow.com/questions/268537/what-features-of-the-upcoming-delphi-prism-would-you-like-to-see-in-delphi-for-wi/385992#385992 0 Answer by idursun for What features of the upcoming Delphi Prism would you like to see in Delphi for win32? idursun 2008-12-22T10:54:07Z 2008-12-22T10:54:07Z <p>I think the followings can be implemented quickly for starters:</p> <ul> <li>try..except..finally block</li> <li>method keyword (function and procedure distinction doesn't make sense imho)</li> <li>require and ensure keywords</li> <li>string in case statements</li> <li>inline var</li> </ul> http://stackoverflow.com/questions/268537/what-features-of-the-upcoming-delphi-prism-would-you-like-to-see-in-delphi-for-wi/444618#444618 0 Answer by Mason Wheeler for What features of the upcoming Delphi Prism would you like to see in Delphi for win32? Mason Wheeler 2009-01-14T20:54:18Z 2009-01-14T20:54:18Z <p>The colon operator looks wonderful. You have no idea how many times I've wished I had that in Delphi ever since I read about Oxygene having it. Same with double-comparisons, LINQ, try..except..finally and async/future declarations.</p> <p>Put in features like this that would enhance the language, and leave out the slow, bloated "managed" crap that would wreck the fast, sleek, human-readable language I love, like multi-pass compilation, automatic garbage collection and inline variables, and I'd be very happy.</p> http://stackoverflow.com/questions/268537/what-features-of-the-upcoming-delphi-prism-would-you-like-to-see-in-delphi-for-wi/831229#831229 1 Answer by Marco van de Voort for What features of the upcoming Delphi Prism would you like to see in Delphi for win32? Marco van de Voort 2009-05-06T19:13:00Z 2009-05-06T19:13:00Z <p>Preferably, none. </p> http://stackoverflow.com/questions/268537/what-features-of-the-upcoming-delphi-prism-would-you-like-to-see-in-delphi-for-wi/858565#858565 0 Answer by Alexander for What features of the upcoming Delphi Prism would you like to see in Delphi for win32? Alexander 2009-05-13T15:11:39Z 2009-05-13T15:11:39Z <p>Why don't you <a href="http://delphi.uservoice.com/pages/4432-general/suggestions/188981-prism-language-features" rel="nofollow">vote for this</a>? ;)</p> http://stackoverflow.com/questions/268537/what-features-of-the-upcoming-delphi-prism-would-you-like-to-see-in-delphi-for-wi/1805902#1805902 0 Answer by Steven T. Cramer for What features of the upcoming Delphi Prism would you like to see in Delphi for win32? Steven T. Cramer 2009-11-26T22:17:03Z 2009-11-26T22:17:03Z <p><strong>two pass compiler</strong> is number one!</p> <p>The argument that speed will be slower doesn't hold water in reality.</p> <p>Currently to have class A with at relationship to Class B without casting one declares the interface sections of these in a single unit.</p> <p>With two pass you would not need to do that.</p> <p>so you would have many smaller units with their dcus all ready compiled and only the unit you changed would need to be recompiled.</p> <p>So 1 huge unit that vs many smaller units.</p> <p>This is really a no brainer and with 64 bit coming why not do it right?</p>