comparison dmd/HaltExp.d @ 187:b0d41ff5e0df

Added expandability scheme outlined in http://www.dsource.org/forums/viewtopic.php?t=5659&sid=6f2150ff5b0bffcd47512a6a7608d218
author Abscissa
date Tue, 07 Jun 2011 23:37:34 -0400
parents e3afd1303184
children
comparison
equal deleted inserted replaced
186:1a0c1126bc46 187:b0d41ff5e0df
14 14
15 import dmd.backend.Util; 15 import dmd.backend.Util;
16 import dmd.backend.OPER; 16 import dmd.backend.OPER;
17 import dmd.backend.TYM; 17 import dmd.backend.TYM;
18 18
19 import dmd.DDMDExtensions;
20
19 class HaltExp : Expression 21 class HaltExp : Expression
20 { 22 {
23 mixin insertMemberExtension!(typeof(this));
24
21 this(Loc loc) 25 this(Loc loc)
22 { 26 {
23 register(); 27 register();
24 super(loc, TOK.TOKhalt, HaltExp.sizeof); 28 super(loc, TOK.TOKhalt, HaltExp.sizeof);
25 } 29 }