Delphi - AUN MAS!!! DiamonBack!

 
Vista:

AUN MAS!!! DiamonBack!

Publicado por mamcx (533 intervenciones) el 13/09/2004 21:33:46
La informacion esta fluyendo rapida y furiosa!

http://www.bsdg.org/

Muestra los cambios al lenguaje (y mejoras) :

Diamondback Compiler



Compiler

XML doc support fully surfaced for all compilers. Generated XML file is not required for help insight, but is used if present.

New Delphi syntax features (Win32 and .NET)

* for..in..do enumeration syntax
* Function inlining
* support for compiling Unicode and UTF8 source files
* Multi-unit namespaces
* New wild-card "uses" syntax (a.b.*)

Win32 Only

* Unit initialization consolidation optimization

.NET only

* Compact framework support
o Compile only
o No designer or debugger (Microsoft has not provided the SDK)
* Forward declared record types

Unit Definitions & Requirements

Multi-unit Namespaces

All interfaced symbols in unit "a.b.c" and "a.b.d" and "a.b.*" will be emitted into the namespace "a.b". The unit class that stores global variables and global procedures is named "a.b.Units.c". C# code (for example) would access type TFoo definind in unit "a.b.c" as try a.b.TFoo. If the unit name does not contain dots then the namespace is the unitname along and the unit class is <unitname>.Units.<unitname>

For..in..do

Código Delphi:


for Node in NodeList do
begin
ListBox1.Items.Add( Node.InnerText);
end;

Valora esta pregunta
Me gusta: Está pregunta es útil y esta claraNo me gusta: Está pregunta no esta clara o no es útil
0
Responder