What features of the upcoming Delphi Prism would you like to see in Delphi for win32? - Stack Overflow most recent 30 from stackoverflow.com2009-12-14T23:30:58Zhttp://stackoverflow.com/feeds/question/268537http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/268537/what-features-of-the-upcoming-delphi-prism-would-you-like-to-see-in-delphi-for-wi5What features of the upcoming Delphi Prism would you like to see in Delphi for win32?Steve2008-11-06T12:41:07Z2009-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#2685496Answer by gabr for What features of the upcoming Delphi Prism would you like to see in Delphi for win32?gabr2008-11-06T12:44:53Z2008-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#2703274Answer by Steve for What features of the upcoming Delphi Prism would you like to see in Delphi for win32?Steve2008-11-06T21:21:22Z2008-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-2Answer by mliesen for What features of the upcoming Delphi Prism would you like to see in Delphi for win32?mliesen2008-11-06T22:13:13Z2008-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#2706962Answer by Oliver Giesen for What features of the upcoming Delphi Prism would you like to see in Delphi for win32?Oliver Giesen2008-11-06T23:02:38Z2008-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#2721414Answer by Robert Giesecke for What features of the upcoming Delphi Prism would you like to see in Delphi for win32?Robert Giesecke2008-11-07T13:59:27Z2008-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#3859920Answer by idursun for What features of the upcoming Delphi Prism would you like to see in Delphi for win32?idursun2008-12-22T10:54:07Z2008-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#4446180Answer by Mason Wheeler for What features of the upcoming Delphi Prism would you like to see in Delphi for win32?Mason Wheeler2009-01-14T20:54:18Z2009-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#8312291Answer 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 Voort2009-05-06T19:13:00Z2009-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#8585650Answer by Alexander for What features of the upcoming Delphi Prism would you like to see in Delphi for win32?Alexander2009-05-13T15:11:39Z2009-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#18059020Answer by Steven T. Cramer for What features of the upcoming Delphi Prism would you like to see in Delphi for win32?Steven T. Cramer2009-11-26T22:17:03Z2009-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>