annotate dmd/backend/symtab_t.d @ 174:af724d3510d7

lot os toCBuffer methods implemented moved shared Type.* stuff into Global
author korDen
date Sun, 10 Oct 2010 03:47:23 +0400
parents e28b18c23469
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
1 module dmd.backend.symtab_t;
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
2
114
e28b18c23469 added a module dmd.common for commonly used stuff
Trass3r
parents: 0
diff changeset
3 import dmd.common;
0
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
4 import dmd.backend.Symbol;
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
5 import dmd.backend.Util;
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
6 import dmd.backend.SYMIDX;
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
7
174
af724d3510d7 lot os toCBuffer methods implemented
korDen
parents: 114
diff changeset
8 struct SYMTAB_S
0
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
9 {
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
10 SYMIDX top; // 1 past end
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
11 SYMIDX symmax; // max # of entries in tab[] possible
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
12 Symbol** tab; // local Symbol table
174
af724d3510d7 lot os toCBuffer methods implemented
korDen
parents: 114
diff changeset
13 }
af724d3510d7 lot os toCBuffer methods implemented
korDen
parents: 114
diff changeset
14
af724d3510d7 lot os toCBuffer methods implemented
korDen
parents: 114
diff changeset
15 alias SYMTAB_S symtab_t;