view ast/Decl.d @ 199:5e05c03d1558

First comment submit.
author Anders Johnsen <skabet@gmail.com>
date Sun, 10 Aug 2008 17:06:54 +0200
parents
children 4f94b5adbc8a
line wrap: on
line source

module ast.Decl;
/**
  The base class for all Declarations. 
  
  Declarations comes in two forms:

    $(OL
    $(LI members, such as variables and functions.)
    $(LI types, such as classes, structs.))

 **/
class Decl
{
}