view trunk/src/dil/ast/Statement.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
children 3b34f6a95a27
line wrap: on
line source

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

import dil.ast.Node;

abstract class Statement : Node
{
  this()
  {
    super(NodeCategory.Statement);
  }
}