comparison dmd2/scope.h @ 847:356e65836fb5

Merged DMD 2.021 frontend. Removed generated files from dmd/dmd2 dirs.
author Tomas Lindquist Olsen <tomas.l.olsen@gmail.com>
date Sat, 13 Dec 2008 16:14:37 +0100
parents f04dde6e882c
children 638d16625da2
comparison
equal deleted inserted replaced
846:bc982f1ad106 847:356e65836fb5
29 struct AnonymousAggregateDeclaration; 29 struct AnonymousAggregateDeclaration;
30 struct FuncDeclaration; 30 struct FuncDeclaration;
31 struct DocComment; 31 struct DocComment;
32 struct EnclosingHandler; 32 struct EnclosingHandler;
33 struct AnonDeclaration; 33 struct AnonDeclaration;
34 #if __GNUC__
35 #include "dsymbol.h" // PROT
36 #include "mars.h" // LINK
37 #else
34 enum LINK; 38 enum LINK;
35 enum PROT; 39 enum PROT;
40 #endif
36 41
37 struct Scope 42 struct Scope
38 { 43 {
39 Scope *enclosing; // enclosing Scope 44 Scope *enclosing; // enclosing Scope
40 45