comparison trunk/src/dil/ast/Expression.d @ 684:10b314bf37e3

Added module dil.semantic.Pass2.
author Aziz K?ksal <aziz.koeksal@gmail.com>
date Mon, 21 Jan 2008 18:40:55 +0100
parents 89ee7802c978
children 5e3ef1b2011c
comparison
equal deleted inserted replaced
683:1ae72234db26 684:10b314bf37e3
15 15
16 this() 16 this()
17 { 17 {
18 super(NodeCategory.Expression); 18 super(NodeCategory.Expression);
19 } 19 }
20
21 Expression evaluate()
22 {
23 return null;
24 }
25 } 20 }