view 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
line wrap: on
line source

/++
  Author: Aziz Köksal
  License: GPL3
+/
module dil.ast.Statement;

import dil.ast.Node;

/// The root class of all statements.
abstract class Statement : Node
{
  this()
  {
    super(NodeCategory.Statement);
  }

  override abstract Statement copy();
}