annotate test/moduleinfo1.d @ 203:e881c9b1c738 trunk

[svn r219] Fixed: the tango/lib/gc/basic garbage collector now compiles and links into an executable (change in tango/lib/llvmdc-posix.mak), closes #5 . Changed: removed the crappy realloc based dynamic memory runtime and started moving over to DMD style runtime support, part of moving to real GC. Fixed: dynamic arrays now use GC runtime for allocating memory. Fixed: new expression now use GC for allocating memory. Changed: revamped the dynamic array support routines related to dynamic memory. Fixed: assertions no longer create exsessive allocas. Changed: misc. minor cleanups.
author lindquist
date Tue, 13 May 2008 14:42:09 +0200
parents fd7ad91fd713
children d9d5d59873d8
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
89
ccca1c13e13a [svn r93] a few fixes, some phobos additions.
lindquist
parents:
diff changeset
1 module moduleinfo1;
ccca1c13e13a [svn r93] a few fixes, some phobos additions.
lindquist
parents:
diff changeset
2
116
fd7ad91fd713 [svn r120] ModuleInfo implementation is now almost complete.
lindquist
parents: 89
diff changeset
3 // has static this
fd7ad91fd713 [svn r120] ModuleInfo implementation is now almost complete.
lindquist
parents: 89
diff changeset
4 import std.outofmemory;
fd7ad91fd713 [svn r120] ModuleInfo implementation is now almost complete.
lindquist
parents: 89
diff changeset
5
fd7ad91fd713 [svn r120] ModuleInfo implementation is now almost complete.
lindquist
parents: 89
diff changeset
6 static this()
fd7ad91fd713 [svn r120] ModuleInfo implementation is now almost complete.
lindquist
parents: 89
diff changeset
7 {
fd7ad91fd713 [svn r120] ModuleInfo implementation is now almost complete.
lindquist
parents: 89
diff changeset
8 }
fd7ad91fd713 [svn r120] ModuleInfo implementation is now almost complete.
lindquist
parents: 89
diff changeset
9
fd7ad91fd713 [svn r120] ModuleInfo implementation is now almost complete.
lindquist
parents: 89
diff changeset
10 static this()
fd7ad91fd713 [svn r120] ModuleInfo implementation is now almost complete.
lindquist
parents: 89
diff changeset
11 {
fd7ad91fd713 [svn r120] ModuleInfo implementation is now almost complete.
lindquist
parents: 89
diff changeset
12 }
fd7ad91fd713 [svn r120] ModuleInfo implementation is now almost complete.
lindquist
parents: 89
diff changeset
13
fd7ad91fd713 [svn r120] ModuleInfo implementation is now almost complete.
lindquist
parents: 89
diff changeset
14 static ~this()
fd7ad91fd713 [svn r120] ModuleInfo implementation is now almost complete.
lindquist
parents: 89
diff changeset
15 {
fd7ad91fd713 [svn r120] ModuleInfo implementation is now almost complete.
lindquist
parents: 89
diff changeset
16 }
fd7ad91fd713 [svn r120] ModuleInfo implementation is now almost complete.
lindquist
parents: 89
diff changeset
17
fd7ad91fd713 [svn r120] ModuleInfo implementation is now almost complete.
lindquist
parents: 89
diff changeset
18 static ~this()
fd7ad91fd713 [svn r120] ModuleInfo implementation is now almost complete.
lindquist
parents: 89
diff changeset
19 {
fd7ad91fd713 [svn r120] ModuleInfo implementation is now almost complete.
lindquist
parents: 89
diff changeset
20 }
fd7ad91fd713 [svn r120] ModuleInfo implementation is now almost complete.
lindquist
parents: 89
diff changeset
21
fd7ad91fd713 [svn r120] ModuleInfo implementation is now almost complete.
lindquist
parents: 89
diff changeset
22 unittest
fd7ad91fd713 [svn r120] ModuleInfo implementation is now almost complete.
lindquist
parents: 89
diff changeset
23 {
fd7ad91fd713 [svn r120] ModuleInfo implementation is now almost complete.
lindquist
parents: 89
diff changeset
24 }
fd7ad91fd713 [svn r120] ModuleInfo implementation is now almost complete.
lindquist
parents: 89
diff changeset
25
89
ccca1c13e13a [svn r93] a few fixes, some phobos additions.
lindquist
parents:
diff changeset
26 class C
ccca1c13e13a [svn r93] a few fixes, some phobos additions.
lindquist
parents:
diff changeset
27 {
ccca1c13e13a [svn r93] a few fixes, some phobos additions.
lindquist
parents:
diff changeset
28 }
ccca1c13e13a [svn r93] a few fixes, some phobos additions.
lindquist
parents:
diff changeset
29
116
fd7ad91fd713 [svn r120] ModuleInfo implementation is now almost complete.
lindquist
parents: 89
diff changeset
30 class D : C
fd7ad91fd713 [svn r120] ModuleInfo implementation is now almost complete.
lindquist
parents: 89
diff changeset
31 {
fd7ad91fd713 [svn r120] ModuleInfo implementation is now almost complete.
lindquist
parents: 89
diff changeset
32 }
fd7ad91fd713 [svn r120] ModuleInfo implementation is now almost complete.
lindquist
parents: 89
diff changeset
33
89
ccca1c13e13a [svn r93] a few fixes, some phobos additions.
lindquist
parents:
diff changeset
34 void main()
ccca1c13e13a [svn r93] a few fixes, some phobos additions.
lindquist
parents:
diff changeset
35 {
ccca1c13e13a [svn r93] a few fixes, some phobos additions.
lindquist
parents:
diff changeset
36 }