comparison trunk/src/dil/ast/Statement.d @ 786:3b34f6a95a27

Added and revised documenation comments.
author Aziz K?ksal <aziz.koeksal@gmail.com>
date Sun, 24 Feb 2008 02:41:11 +0100
parents 3bd9660f71ac
children 5fe89bb8cbdd
comparison
equal deleted inserted replaced
785:57ef69eced96 786:3b34f6a95a27
4 +/ 4 +/
5 module dil.ast.Statement; 5 module dil.ast.Statement;
6 6
7 import dil.ast.Node; 7 import dil.ast.Node;
8 8
9 /// The root class of all statements.
9 abstract class Statement : Node 10 abstract class Statement : Node
10 { 11 {
11 this() 12 this()
12 { 13 {
13 super(NodeCategory.Statement); 14 super(NodeCategory.Statement);