comparison trunk/src/dil/Scope.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 6ddff941862a
children 709e223a8eb9
comparison
equal deleted inserted replaced
531:315aeb3f7a9b 532:50e64bab9c7a
8 import common; 8 import common;
9 9
10 class Scope 10 class Scope
11 { 11 {
12 Scope parent; /// The surrounding scope. 12 Scope parent; /// The surrounding scope.
13 InformationManager infoMan; /// Collects errors reported during the semantic phase. 13 InfoManager infoMan; /// Collects errors reported during the semantic phase.
14 14
15 this() 15 this()
16 { 16 {
17 } 17 }
18 18