diff trunk/src/dil/ast/Types.d @ 804:9e6c6bb73e5f

Implemented visit methods for some type nodes. Added method SemanticPass2.search(). Added methods arrayOf() and arrayOf(Type) to class Type. Refactored ModuleScopeType. Added error msg UndefinedIdentifier. Added release.py.
author Aziz K?ksal <aziz.koeksal@gmail.com>
date Sat, 08 Mar 2008 22:02:20 +0100
parents 5fe89bb8cbdd
children
line wrap: on
line diff
--- a/trunk/src/dil/ast/Types.d	Fri Mar 07 11:46:56 2008 +0100
+++ b/trunk/src/dil/ast/Types.d	Sat Mar 08 22:02:20 2008 +0100
@@ -65,9 +65,8 @@
 /// "." Type
 class ModuleScopeType : TypeNode
 {
-  this(TypeNode next)
+  this()
   {
-    super(next);
     mixin(set_kind);
   }
   mixin(copyMethod);