diff trunk/src/dil/Parser.d @ 511:aa73f669c298

Renamed class Type to TypeNode.
author Aziz K?ksal <aziz.koeksal@gmail.com>
date Thu, 13 Dec 2007 21:23:41 +0100
parents baa7c4c0be78
children 6ddff941862a
line wrap: on
line diff
--- a/trunk/src/dil/Parser.d	Thu Dec 13 18:45:29 2007 +0100
+++ b/trunk/src/dil/Parser.d	Thu Dec 13 21:23:41 2007 +0100
@@ -37,7 +37,14 @@
   uint alignSize = DEFAULT_ALIGN_SIZE;
 
   private alias TOK T;
-
+  private alias TypeNode Type;
+
+  /++
+    Construct a Parser object.
+    Params:
+      text     = the UTF-8 source code.
+      filePath = the path to the source code; used for error messages.
+  +/
   this(char[] srcText, string filePath, InformationManager infoMan = null)
   {
     lx = new Lexer(srcText, filePath);