diff trunk/src/dil/ast/Statements.d @ 657:3bd9660f71ac

Moved class Statement to its own module.
author Aziz K?ksal <aziz.koeksal@gmail.com>
date Tue, 15 Jan 2008 16:41:12 +0100
parents 4ae7b13aaac8
children a35e6debfb4c
line wrap: on
line diff
--- a/trunk/src/dil/ast/Statements.d	Tue Jan 15 16:37:31 2008 +0100
+++ b/trunk/src/dil/ast/Statements.d	Tue Jan 15 16:41:12 2008 +0100
@@ -4,6 +4,7 @@
 +/
 module dil.ast.Statements;
 
+public import dil.ast.Statement;
 import dil.ast.Node;
 import dil.ast.Expressions;
 import dil.ast.Declarations;
@@ -11,14 +12,6 @@
 import dil.ast.Parameters;
 import dil.lexer.IdTable;
 
-abstract class Statement : Node
-{
-  this()
-  {
-    super(NodeCategory.Statement);
-  }
-}
-
 class Statements : Statement
 {
   this()