comparison dmd/Declaration.d @ 131:206db751bd4c

dmdfe 2.037 compiles now
author Eldar Insafutdinov <e.insafutdinov@gmail.com>
date Fri, 10 Sep 2010 00:27:37 +0100
parents 010eb8f0e18d
children af1bebfd96a4
comparison
equal deleted inserted replaced
130:60bb0fe4563e 131:206db751bd4c
80 80
81 class Declaration : Dsymbol 81 class Declaration : Dsymbol
82 { 82 {
83 Type type; 83 Type type;
84 Type originalType; // before semantic analysis 84 Type originalType; // before semantic analysis
85 STC storage_class = STC.STCundefined; 85 StorageClass storage_class = STC.STCundefined;
86 PROT protection = PROT.PROTundefined; 86 PROT protection = PROT.PROTundefined;
87 LINK linkage = LINK.LINKdefault; 87 LINK linkage = LINK.LINKdefault;
88 int inuse; // used to detect cycles 88 int inuse; // used to detect cycles
89 89
90 this(Identifier id) 90 this(Identifier id)