diff trunk/src/dil/Parser.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 315aeb3f7a9b
children bdd49ad84f5f
line wrap: on
line diff
--- a/trunk/src/dil/Parser.d	Mon Dec 17 13:23:52 2007 +0100
+++ b/trunk/src/dil/Parser.d	Mon Dec 17 16:10:08 2007 +0100
@@ -27,7 +27,7 @@
   Token* token; /// Current non-whitespace token.
   Token* prevToken; /// Previous non-whitespace token.
 
-  InformationManager infoMan;
+  InfoManager infoMan;
   ParserError[] errors;
 
   ImportDeclaration[] imports; /// ImportDeclarations in the source text.
@@ -46,7 +46,7 @@
       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)
+  this(char[] srcText, string filePath, InfoManager infoMan = null)
   {
     this.infoMan = infoMan;
     lx = new Lexer(srcText, filePath, infoMan);