annotate dmd/backend/symtab_t.d @ 0:10317f0c89a5

Initial commit
author korDen
date Sat, 24 Oct 2009 08:42:06 +0400
parents
children e28b18c23469
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
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
3 import dmd.backend.Symbol;
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
4 import dmd.backend.Util;
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
5 import dmd.backend.SYMIDX;
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
6
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
7 struct symtab_t
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
8 {
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
9 SYMIDX top; // 1 past end
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
10 SYMIDX symmax; // max # of entries in tab[] possible
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
11 Symbol** tab; // local Symbol table
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
12 }