annotate dmd/DefaultInitExp.d @ 191:52188e7e3fb5

Fixed deprecated features, now compiles with DMD2.058 Also changed Array allocation policy: Now doesn't reallocate but malloc's, followed by a memcpy (no free). (this fixes a crash while compiling druntime. Same bug in dmd)
author korDen@korDen-pc
date Sun, 25 Mar 2012 03:11:12 +0400
parents b0d41ff5e0df
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
72
2e2a5c3f943a reduced warnings by adding override to the methods
Trass3r
parents: 55
diff changeset
1 module dmd.DefaultInitExp;
2e2a5c3f943a reduced warnings by adding override to the methods
Trass3r
parents: 55
diff changeset
2
114
e28b18c23469 added a module dmd.common for commonly used stuff
Trass3r
parents: 72
diff changeset
3 import dmd.common;
72
2e2a5c3f943a reduced warnings by adding override to the methods
Trass3r
parents: 55
diff changeset
4 import dmd.Expression;
2e2a5c3f943a reduced warnings by adding override to the methods
Trass3r
parents: 55
diff changeset
5 import dmd.OutBuffer;
2e2a5c3f943a reduced warnings by adding override to the methods
Trass3r
parents: 55
diff changeset
6 import dmd.Loc;
2e2a5c3f943a reduced warnings by adding override to the methods
Trass3r
parents: 55
diff changeset
7 import dmd.Scope;
2e2a5c3f943a reduced warnings by adding override to the methods
Trass3r
parents: 55
diff changeset
8 import dmd.HdrGenState;
2e2a5c3f943a reduced warnings by adding override to the methods
Trass3r
parents: 55
diff changeset
9 import dmd.TOK;
2e2a5c3f943a reduced warnings by adding override to the methods
Trass3r
parents: 55
diff changeset
10 import dmd.Token;
2e2a5c3f943a reduced warnings by adding override to the methods
Trass3r
parents: 55
diff changeset
11
187
b0d41ff5e0df Added expandability scheme outlined in http://www.dsource.org/forums/viewtopic.php?t=5659&sid=6f2150ff5b0bffcd47512a6a7608d218
Abscissa
parents: 178
diff changeset
12 import dmd.DDMDExtensions;
b0d41ff5e0df Added expandability scheme outlined in http://www.dsource.org/forums/viewtopic.php?t=5659&sid=6f2150ff5b0bffcd47512a6a7608d218
Abscissa
parents: 178
diff changeset
13
72
2e2a5c3f943a reduced warnings by adding override to the methods
Trass3r
parents: 55
diff changeset
14 class DefaultInitExp : Expression
2e2a5c3f943a reduced warnings by adding override to the methods
Trass3r
parents: 55
diff changeset
15 {
187
b0d41ff5e0df Added expandability scheme outlined in http://www.dsource.org/forums/viewtopic.php?t=5659&sid=6f2150ff5b0bffcd47512a6a7608d218
Abscissa
parents: 178
diff changeset
16 mixin insertMemberExtension!(typeof(this));
b0d41ff5e0df Added expandability scheme outlined in http://www.dsource.org/forums/viewtopic.php?t=5659&sid=6f2150ff5b0bffcd47512a6a7608d218
Abscissa
parents: 178
diff changeset
17
72
2e2a5c3f943a reduced warnings by adding override to the methods
Trass3r
parents: 55
diff changeset
18 TOK subop;
2e2a5c3f943a reduced warnings by adding override to the methods
Trass3r
parents: 55
diff changeset
19
2e2a5c3f943a reduced warnings by adding override to the methods
Trass3r
parents: 55
diff changeset
20 this(Loc loc, TOK subop, int size)
2e2a5c3f943a reduced warnings by adding override to the methods
Trass3r
parents: 55
diff changeset
21 {
178
e3afd1303184 Many small bugs fixed
korDen
parents: 130
diff changeset
22 register();
72
2e2a5c3f943a reduced warnings by adding override to the methods
Trass3r
parents: 55
diff changeset
23 super(loc, TOKdefault, size);
2e2a5c3f943a reduced warnings by adding override to the methods
Trass3r
parents: 55
diff changeset
24 this.subop = subop;
2e2a5c3f943a reduced warnings by adding override to the methods
Trass3r
parents: 55
diff changeset
25 }
2e2a5c3f943a reduced warnings by adding override to the methods
Trass3r
parents: 55
diff changeset
26
2e2a5c3f943a reduced warnings by adding override to the methods
Trass3r
parents: 55
diff changeset
27 override void toCBuffer(OutBuffer buf, HdrGenState* hgs)
2e2a5c3f943a reduced warnings by adding override to the methods
Trass3r
parents: 55
diff changeset
28 {
2e2a5c3f943a reduced warnings by adding override to the methods
Trass3r
parents: 55
diff changeset
29 buf.writestring(Token.toChars(subop));
2e2a5c3f943a reduced warnings by adding override to the methods
Trass3r
parents: 55
diff changeset
30 }
2e2a5c3f943a reduced warnings by adding override to the methods
Trass3r
parents: 55
diff changeset
31 }