comparison trunk/src/dil/Module.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 709e223a8eb9
comparison
equal deleted inserted replaced
531:315aeb3f7a9b 532:50e64bab9c7a
31 ModuleDeclaration moduleDecl; 31 ModuleDeclaration moduleDecl;
32 private Parser parser; 32 private Parser parser;
33 33
34 Module[] modules; 34 Module[] modules;
35 35
36 InformationManager infoMan; 36 InfoManager infoMan;
37 37
38 this(string filePath, bool isLightweight = false) 38 this(string filePath, bool isLightweight = false)
39 { 39 {
40 this.filePath = filePath; 40 this.filePath = filePath;
41 this.isLightweight = isLightweight; 41 this.isLightweight = isLightweight;
42 } 42 }
43 43
44 this(string filePath, InformationManager infoMan) 44 this(string filePath, InfoManager infoMan)
45 { 45 {
46 this(filePath, false); 46 this(filePath, false);
47 this.infoMan = infoMan; 47 this.infoMan = infoMan;
48 } 48 }
49 49