DMD 0.175 release

Ary Manzana ary at esperanto.org.ar
Sat Nov 25 07:39:40 PST 2006


Walter Bright escribió:
> Stack class variables, bug fixes.
> 
> http://www.digitalmars.com/d/changelog.html
> 
> http://ftp.digitalmars.com/dmd.175.zip

Wow, how many bugs fixed! Great!

You forgot to add "super" to the specs... partially. :-)

http://www.digitalmars.com/d/expression.html#IsExpression

---
IsExpression:
	is ( Type )
	is ( Type : TypeSpecialization )
	is ( Type == TypeSpecialization )
	is ( Type Identifier )
	is ( Type Identifier : TypeSpecialization )
	is ( Type Identifier == TypeSpecialization )

TypeSpecialization:
	Type
	typedef
	struct
	union
	class
-->                    <-- "super" wants to be a part of this
	interface
	enum
	function
	delegate
---

And it's ok in the table below.
Ary



More information about the Digitalmars-d-announce mailing list