comparison src/dil/ast/Statement.d @ 806:bcb74c9b895c

Moved out files in the trunk folder to the root.
author Aziz K?ksal <aziz.koeksal@gmail.com>
date Sun, 09 Mar 2008 00:12:19 +0100
parents trunk/src/dil/ast/Statement.d@5fe89bb8cbdd
children
comparison
equal deleted inserted replaced
805:a3fab8b74a7d 806:bcb74c9b895c
1 /++
2 Author: Aziz Köksal
3 License: GPL3
4 +/
5 module dil.ast.Statement;
6
7 import dil.ast.Node;
8
9 /// The root class of all statements.
10 abstract class Statement : Node
11 {
12 this()
13 {
14 super(NodeCategory.Statement);
15 }
16
17 override abstract Statement copy();
18 }