comparison trunk/src/dil/Compilation.d @ 780:edd217e14736

Using CompilationContext in command 'igraph'.
author Aziz K?ksal <aziz.koeksal@gmail.com>
date Wed, 20 Feb 2008 23:13:56 +0100
parents 78be32e3e157
children
comparison
equal deleted inserted replaced
779:8e6fed11bb68 780:edd217e14736
22 this(CC parent = null) 22 this(CC parent = null)
23 { 23 {
24 this.parent = parent; 24 this.parent = parent;
25 if (parent) 25 if (parent)
26 { 26 {
27 this.importPaths = parent.importPaths; 27 this.importPaths = parent.importPaths.dup;
28 this.debugLevel = parent.debugLevel; 28 this.debugLevel = parent.debugLevel;
29 this.versionLevel = parent.versionLevel; 29 this.versionLevel = parent.versionLevel;
30 this.releaseBuild = parent.releaseBuild; 30 this.releaseBuild = parent.releaseBuild;
31 this.structAlign = parent.structAlign; 31 this.structAlign = parent.structAlign;
32 } 32 }