annotate dmd/MOD.d @ 96:acd69f84627e

further work
author Trass3r
date Tue, 31 Aug 2010 02:12:15 +0200
parents 2cc604139636
children af1bebfd96a4
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
14
2cc604139636 Implemented Linux support for ddmd. Some parts are a bit hacky to just "get it working", that said, druntime and phobos compile, and unittests pass.
Robert Clipsham <robert@octarineparrot.com>
parents: 0
diff changeset
3 public enum MOD
0
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
96
acd69f84627e further work
Trass3r
parents: 14
diff changeset
8 MODinvariant = 4, // type is immutable
acd69f84627e further work
Trass3r
parents: 14
diff changeset
9 MODimmutable = 4, // type is immutable
0
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
10 }
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
11
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
12 import dmd.EnumUtils;
14
2cc604139636 Implemented Linux support for ddmd. Some parts are a bit hacky to just "get it working", that said, druntime and phobos compile, and unittests pass.
Robert Clipsham <robert@octarineparrot.com>
parents: 0
diff changeset
13 mixin(BringToCurrentScope!(MOD));