comparison dmd/DefaultInitExp.d @ 130:60bb0fe4563e

dmdfe 2.037 first main iteration
author Eldar Insafutdinov <e.insafutdinov@gmail.com>
date Thu, 09 Sep 2010 22:51:44 +0100
parents e28b18c23469
children e3afd1303184
comparison
equal deleted inserted replaced
129:010eb8f0e18d 130:60bb0fe4563e
17 { 17 {
18 super(loc, TOKdefault, size); 18 super(loc, TOKdefault, size);
19 this.subop = subop; 19 this.subop = subop;
20 } 20 }
21 21
22 abstract Expression resolve(Loc loc, Scope sc);
23
24 override void toCBuffer(OutBuffer buf, HdrGenState* hgs) 22 override void toCBuffer(OutBuffer buf, HdrGenState* hgs)
25 { 23 {
26 buf.writestring(Token.toChars(subop)); 24 buf.writestring(Token.toChars(subop));
27 } 25 }
28 } 26 }