annotate dmd/MOD.d @ 0:10317f0c89a5

Initial commit
author korDen
date Sat, 24 Oct 2009 08:42:06 +0400
parents
children 2cc604139636
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
1 module dmd.MOD;
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
2
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
3 enum MOD
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
4 {
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
5 MODundefined = 0,
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
6 MODconst = 1, // type is const
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
7 MODshared = 2, // type is shared
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
8 MODinvariant = 4, // type is invariant
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
9 }
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
10
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
11 import dmd.EnumUtils;
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
12 mixin(BringToCurrentScope!(MOD));