diff trunk/src/dil/Lexer.d @ 532:50e64bab9c7a

Renamed InformationManager to InfoManager.
author Aziz K?ksal <aziz.koeksal@gmail.com>
date Mon, 17 Dec 2007 16:10:08 +0100
parents f203c5248d0b
children d0d40bcca9c6
line wrap: on
line diff
--- a/trunk/src/dil/Lexer.d	Mon Dec 17 13:23:52 2007 +0100
+++ b/trunk/src/dil/Lexer.d	Mon Dec 17 16:10:08 2007 +0100
@@ -35,7 +35,7 @@
   char* end;        /// Points one character past the end of the source text.
 
   // Members used for error messages:
-  InformationManager infoMan;
+  InfoManager infoMan;
   LexerError[] errors;
   /// Always points to the beginning of the current line.
   char* lineBegin;
@@ -51,7 +51,7 @@
       text     = the UTF-8 source code.
       filePath = the path to the source code; used for error messages.
   +/
-  this(string text, string filePath, InformationManager infoMan = null)
+  this(string text, string filePath, InfoManager infoMan = null)
   {
     this.filePath = this.errorPath = filePath;
     this.infoMan = infoMan;